Home  >  Article  >  Backend Development  >  会打出引用方法时的值吗

会打出引用方法时的值吗

WBOY
WBOYOriginal
2016-06-13 12:16:58896browse

能打出引用方法时的值吗
这是一个源码中的Tpl::output('brand_list',$brand_list);

现在我想打印出它,目的是看看它纠竟里面是个啥玩意,不知用啥变法

我试图这样
$tpl=Tpl::output('brand_list',$brand_list);
echo $tpl;
或print_r($tpl);
但都不行呢,不知为啥
------解决思路----------------------
Tpl::output是模板引擎渲染函数,执行这个方法之后php方法已经return掉了,你可以好好的看下它的模板引擎里面的output方法。
你在output之后打印是打不出来的,因为程序已经跳出去了不再往下执行了,要打印是啥,去output方法里面打印。

------解决思路----------------------
这个方法不包含return返回 打印不了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn