var_export()是PHP中的內置函數,用於返回作為參數傳遞給該函數的變量的結構化值(信息)。此函數類似於var_dump()函數。
用法:
var_export($var, $return)
參數:此函數接受上述語法中所示的兩個參數,並在下麵進行描述:
- $var:此參數表示要導出的變量。
- $return:這是一個可選參數,為boolead類型。如果使用它並將其設置為true,則此函數將返回變量reprentation而不是將其輸出。此參數的默認值為FALSE。
返回類型:如果使用$return參數並將其設置為true,則返回變量表示形式,否則此函數返回NULL。
以下示例程序旨在說明var_export()函數:
程序1::
<?php
// PHP program to illustrate
// the var_export() function
$var = '11.89';
$res = var_export($var, true);
echo $res;
?>
輸出:
'11.89'
程序2::
<?php
// PHP program to illustrate
// the var_export() function
$var = +11.99;
$res = var_export($var);
echo $res ;
?>
輸出:
11.99
參考:
http://php.net/manual/en/function.var-export.php
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Shivani2609大神的英文原創作品 PHP | var_export() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。