PHP debug_zval_dump() Function

❮ PHP Variable Handling Reference

Example

Dump a string representation of an internal zend value to output:

<?php
$a = "Hello world!";
echo debug_zval_dump($a) . "<br>";
?>
Try it Yourself »

Definition and Usage

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


Syntax

debug_zval_dump(variable);

Parameter Values

Parameter Description
variable Required. Specifies the variable to be evaluated

Technical Details

Return Value: Nothing
Return Type: -
PHP Version: 4.2+

❮ PHP Variable Handling Reference
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.