|
Home
iRate! Tutorials Headlines CoolSites PHP Functions |
|
Most Referenced Functions » google_pagerank() » preg_replace() » htmlentities() » imagecreatefrompng() » site_pageranks() » imagepng() » imagestring() » imagedestroy() » header() » imagecolorallocate() » preg_match() » session_start() » getimagesize() » ob_start() » urlencode() » flush() » strpos() » str_replace() » fopen() » nl2br() » array2vars() » htmlspecialchars() » preg_match_all() » setcookie() » strstr() » ob_flush() » ereg() » preg_split() » ereg_replace() » var_dump() Our Sponsors » Weblog Community » Listen to Podcasts » Rock Music Community - meet fans Become a sponsor for $15/month. Link is sitewide - PR5 homepage, 20+ PR4 pages, 90+ PR3 pages. Email Tabpole[AT]Gmail[DOT]com. |
PHP Functions
Function: debug_zval_dump (PHP 4 >= 4.2.0, PHP 5) debug_zval_dump -- Dumps a string representation of an internal zend value to outputDescriptionvoid debug_zval_dump ( mixed variable )Dumps a string representation of an internal zend value to output. Parameters
variable The variable being evaluated. Return ValuesNo value is returned. Examples
Example 1. debug_zval_dump() example <?php $var1 = 'Hello World'; $var2 = ''; $var2 =& $var1; debug_zval_dump($var1); ?> The above example will output: string(11) "Hello World" refcount(1) Related Function(s) |