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.

Definition and usage

The debug_zval_dump() function dumps the string representation of the internal zend value to the output.

Example

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

grammar

 debug_zval_dump ( variable ) ;
parameter describe
variable Required. Specifies the variable to evaluate.
Similar Functions
Popular Articles