定義和用法
函數 debug_zval_dump() 輸出一個內部 zval(Zend value) 結構的字符串表示來輸出。這對於理解或調試 Zend 引擎或 PHP 擴展的實現細節非常有用。
用法
void debug_zval_dump ( mixed $value , mixed $values )
參數
Sr.No | 參數 | 描述 |
---|---|---|
1 |
value |
要轉儲的變量或值。 |
2 |
values |
要轉儲的更多變量或值。 |
返回值
此函數不返回任何值。
依賴關係
PHP 4.2 及以上
示例
以下示例創建數組的標準絕對偏差:
<?php
$var1 = 'Welcome';
$var1 .= ' tutorialpoint';
$var2 = $var1;
debug_zval_dump($var1);
?>
輸出
這將產生以下結果 -
string(21) "Welcome tutorialpoint" refcount(3)
您可以在此處找到有關 PHP 引用計數的更多詳細信息
相關用法
- PHP debug_print_backtrace()用法及代碼示例
- PHP debug_backtrace()用法及代碼示例
- PHP decbin()用法及代碼示例
- PHP decoct()用法及代碼示例
- PHP dechex()用法及代碼示例
- PHP deg2rad()用法及代碼示例
- PHP decoct( )用法及代碼示例
- PHP define()用法及代碼示例
- PHP decbin( )用法及代碼示例
- PHP defined()用法及代碼示例
- PHP dechex( )用法及代碼示例
- PHP disk_total_space()用法及代碼示例
- PHP disk_total_space( )用法及代碼示例
- PHP dir()用法及代碼示例
- PHP date_default_timezone_set()用法及代碼示例
- PHP date_create_immutable()用法及代碼示例
- PHP date_get_last_errors()用法及代碼示例
- PHP date_parse()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - debug_zval_dump() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。