runkit7_zval_inspect
(PECL runkit7 >= Unknown)
runkit7_zval_inspect — Returns information about the passed in value with data types, reference counts, etc
参数
value-
The value to return the representation of
返回值
The array returned by this function contains the following elements:
addressrefcount(optional)is_ref(optional)type
示例
示例 #1 runkit7_zval_inspect() example
<?php
$var = new DateTime();
var_dump(runkit7_zval_inspect($var));
$var = 1;
var_dump(runkit7_zval_inspect($var));
?>以上示例会输出:
array(4) {
["address"]=>
string(14) "0x7f45ab21b1e0"
["refcount"]=>
int(2)
["is_ref"]=>
bool(false)
["type"]=>
int(8)
}
array(2) {
["address"]=>
string(14) "0x7f45ab21b1e0"
["type"]=>
int(4)
}
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/function.runkit7-zval-inspect.php