超越PHP PHP动态 | 经典文章 | CLASS | 相关下载 | 常见问题 | FORUM | WIKI | 在线手册
Site search:    
<Variablesdoubleval>
Last updated: Fri, 22 Jun 2007

debug_zval_dump

(PHP 4 >= 4.2.0, PHP 5)

debug_zval_dump -- Dumps a string representation of an internal zend value to output

Description

void debug_zval_dump ( mixed variable)

Dumps a string representation of an internal zend value to output.

Parameter List

variable

The variable being evaluated.

返回值

No value is returned.

例子 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)




add a note add a note User Contributed Notes
debug_zval_dump
There are no user contributed notes for this page.

<Variablesdoubleval>
 Last updated: Fri, 22 Jun 2007
view source | feedback | send page | sitemap | aboutus   
Copyright ® 2002-2003 PHPE.NET. All rights reserved
Last updated:2002-11-22