我们如何使用zend_debug在Zend Framework 1中转储值?

时间:2016-11-24 11:45:17

标签: php zend-framework

我知道如何使用var_dump()转储值。但我想知道如何使用zend_debug输出到日志。

1 个答案:

答案 0 :(得分:0)

只是看着它,它的工作原理。 香港专业教育学院在第3个参数(回声)上添加了假,因此它不会显示在页面上。您可以将结果写入日志文件。或者像下面的php日志文件。

public function indexAction() {

    $result = Zend_Debug::dump($_REQUEST,'label',false);
    echo 'write this to log ('. $result .')';
    error_log($result);

}