debug_zval_dump
Dump the string representation of the internal zend value to the output
The debug_zval_dump()
function dumps the string representation of the internal zend value to the output.
Dump the string representation of the internal zend value to the output:
<?php $a = "Hello world!" ; echo debug_zval_dump ( $a ) . "<br>" ; ?>
Try it yourself
debug_zval_dump ( variable ) ;
parameter | describe |
---|---|
variable | Required. Specifies the variable to evaluate. |