I use Zend_Debug::dump to dump variables into a Zend_Log file. How can I get it to stop wrapping the output in HTML tags?

The documentaion says "If the output stream is detected as a web presentation, the output of var_dump() is escaped using ยป htmlspecialchars() and wrapped with (X)HTML tags." Why does it think my log file is a web presentation?

The method for the dump function has a boolean $echo flag. Even when this is FALSE, I get HTML markup in my log files.

Thanks for you help!

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Zend Debug is always using htmlspecialchars() to quote. You cant disable this by an provided parameter.

The boolean for "echo" is only used to disable the var_dump() (wich is used in Zend_Debug) printing to the browser.

Code from Zend_Debug::dump():

$output = htmlspecialchars($output, ENT_QUOTES);

    if (self::getSapi() == 'cli') {
        $output = PHP_EOL . $label
                . PHP_EOL . $output
                . PHP_EOL;
    } else {
        if(!extension_loaded('xdebug')) {
            $output = htmlspecialchars($output, ENT_QUOTES);
        }

        $output = '<pre>'
                . $label
                . $output
                . '</pre>';
    }
link|improve this answer
Thanks. So do you just wade through the html tags when reviewing logs? Or do you log to a DB? – Kim Prince Sep 21 '11 at 8:26
no is use : error_log(print_r($error, true)); instead of zend debug ;) – ArneRie Sep 21 '11 at 12:37
Thanks ArneRie! – Kim Prince Sep 22 '11 at 0:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.