Zend
ZF-100-500 · Question #78
Which of the following will NOT display the value of $debug_variable? Each correct answer represents a complete solution. Choose all that apply.
The correct answer is A. echo Zend_Debug::dump($debug_variable, 'debug _variable', false); B. Zend_Debug::dump($debug_variable, 'debug_variable', true); D. print(Zend_Debug::dump($debug_variable, 'debug_variable', true)). See the full explanation below for the reasoning.
Question
Which of the following will NOT display the value of $debug_variable? Each correct answer represents a complete solution. Choose all that apply.
Options
- Aecho Zend_Debug::dump($debug_variable, 'debug _variable', false);
- BZend_Debug::dump($debug_variable, 'debug_variable', true);
- Cob_start(); Zend_Debug::dump($debug_variable, 'debug_variable', false); ob_end_flush();
- Dprint(Zend_Debug::dump($debug_variable, 'debug_variable', true));
How the community answered
(50 responses)- A74% (37)
- C26% (13)
Community Discussion
No community discussion yet for this question.