Current Location: Home> Function Categories> debug_zval_dump

debug_zval_dump

Dump the string representation of the internal zend value to the output
Name:debug_zval_dump
Category:Variable processing
Programming Language:php
One-line Description:Dump the string representation of the internal zend value to the output.

Example

Dump the string representation of the internal zend value to the output:

 <span class="token php language-php"><span class="token delimiter important"><?php</span>
<span class="token variable">$a</span> <span class="token operator">=</span> <span class="token string double-quoted-string">"Hello world!"</span> <span class="token punctuation">;</span>
<span class="token keyword">echo</span> <span class="token function">debug_zval_dump</span> <span class="token punctuation">(</span> <span class="token variable">$a</span> <span class="token punctuation">)</span> <span class="token operator">.</span> <span class="token string double-quoted-string">"<br>"</span> <span class="token punctuation">;</span>
<span class="token delimiter important">?></span></span>

Try it yourself

Similar Functions
Popular Articles