(PHP 4, PHP 5, PHP 7)
get_object_vars — 锟斤拷锟斤拷锟缴讹拷锟斤拷锟斤拷锟斤拷锟斤拷傻墓锟斤拷锟斤拷锟斤拷锟�
$obj
) : array
锟斤拷锟斤拷锟斤拷 obj
指锟斤拷锟侥讹拷锟斤拷锟叫讹拷锟斤拷锟斤拷锟斤拷锟斤拷锟缴的癸拷锟斤拷锟斤拷锟介。
Note:
锟斤拷 PHP 4.2.0 之前锟侥版本锟叫o拷锟斤拷锟斤拷锟�
obj
锟斤拷锟斤拷实锟斤拷锟斤拷锟斤拷锟斤拷锟侥憋拷锟斤拷没锟叫憋拷锟斤拷值锟斤拷锟斤拷锟斤拷锟角斤拷锟斤拷锟斤拷锟节凤拷锟截碉拷锟斤拷锟斤拷锟叫★拷锟斤拷锟斤拷 PHP 4.2.0 之锟斤拷锟斤拷些锟斤拷锟斤拷锟斤拷为锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷NULL
值锟斤拷
Example #1 使锟斤拷 get_object_vars()
<?php
class Point2D {
var $x, $y;
var $label;
function Point2D($x, $y)
{
$this->x = $x;
$this->y = $y;
}
function setLabel($label)
{
$this->label = $label;
}
function getPoint()
{
return array("x" => $this->x,
"y" => $this->y,
"label" => $this->label);
}
}
// "$label" is declared but not defined
$p1 = new Point2D(1.233, 3.445);
print_r(get_object_vars($p1));
$p1->setLabel("point #1");
print_r(get_object_vars($p1));
?>
锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�
Array ( [x] => 1.233 [y] => 3.445 [label] => ) Array ( [x] => 1.233 [y] => 3.445 [label] => point #1 )
锟轿硷拷 get_class_methods() 锟斤拷 get_class_vars()锟斤拷
object
An object instance.
Returns an associative array of defined object accessible non-static properties
for the specified object
in scope. If a property have
not been assigned a value, it will be returned with a NULL
value.
锟芥本 | 说锟斤拷 |
---|---|
5.3.0 |
This function now returns NULL if the
object isn't an object.
|
prior to 5.3.0 |
If the object isn't an object, then
get_object_vars() would return FALSE
|
prior to 4.2.0 |
If the variables declared in the class of which the
object is an instance, have not been assigned a
value, those will not be returned in the array
|
Example #2 Use of get_object_vars()
<?php
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 }