时间:2021-07-01 10:21:17 帮助过:27人阅读
输出控制函数来捕获此函数的输出,并把它们保存到一个例如 string 类型的变量中。
class foo {
private $a;
public $b = 1;
public $c;
private $d;
static $e;
public function test() {
var_dump(get_object_vars($this));
}
}
$test = new foo;
var_dump(get_object_vars($test));
$test->test();
?>
结果如下:
array(2) {
["b"]=>
int(1)
["c"]=>
NULL
}
array(4) {
["a"]=>
NULL
["b"]=>
int(1)
["c"]=>
NULL
["d"]=>
NULL
}
遍历对象属性第二种方法:
代码如下:输出到浏览器,可以使用
class foo {
private $a;
public $b = 1;
public $c='bitsCN.com';
private $d;
static $e;
public function test() {
var_dump(get_object_vars($this));
}
}
$test = new foo;
var_dump(get_object_vars($test));
$test->test();
?>
结果如下:
array(2) {
["b"]=>
int(1)
["c"]=>
string(8) "bitsCN.com"
}
array(4) {
["a"]=>
NULL
["b"]=>
int(1)
["c"]=>
string(8) "bitsCN.com"
["d"]=>
NULL
}
var_dump使用注意事项:
为了防止程序直接将结果
输出:
$a = array (1, 2, array ("a", "b", "c"));
var_dump ($a);
/*