Home > Backend Development > PHP Tutorial > var_export这个函数的第二个参数什么意思?

var_export这个函数的第二个参数什么意思?

WBOY
Release: 2016-06-23 13:28:10
Original
994 people have browsed it

var_export 函数原型:mixed var_export ( mixed $expression [, bool $return ] )
此函数返回关于传递给该函数的变量的结构信息,它和 var_dump() 类似,不同的是其返回的表示是合法的 PHP 代码。你可以通过将函数的第二个参数设置为 TRUE,从而返回变量的表示。
这个返回变量的表示完全不懂啊,了解这个函数的能否讲下有和没有TRUE这个参数,函数返回值会有怎样的不同。


回复讨论(解决方案)

<?php$a = array(1,2,3);var_export($a);$b = var_export($a, true);echo $b;?>
Copy after login


加了true,不会显示,而会返回给一个变量。

懂了,谢谢版主

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template