您现在的位置是:首页 > 其他

李清波 2017-04-01 其他 1792 复制当前网址

get_object_vars

get_object_vars


(PHP 4, PHP 5)


get_object_vars -- 返回由对象属性组成的关联数组


描述

array get_object_vars ( object obj )


返回由 obj 指定的对象中定义的属性组成的关联数组。


注: 在 PHP 4.2.0 之前的版本中,如果在 obj 对象实例中声明的变量没有被赋值,则它们将不会在返回的数组中。而在 PHP 4.2.0 之后,这些变量作为键名将被赋予 NULL 值。


例子 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
 )


文章来源:http://liqingbo.com/blog-1345.html

上一篇:git push命令使用教程

下一篇:get_class_vars

评论