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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。