欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中使用什么内置函数可将对象转为数组

程序员文章站 2022-04-15 21:50:17
...

在php中,可以使用内置函数get_object_vars()来将对象转为数组,该函数可返回由对象属性组成的关联数组,语法格式“get_object_vars(object)”。

php中使用什么内置函数可将对象转为数组

本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑

在php中,可以使用内置函数get_object_vars()来将对象转为数组

get_object_vars()返回由对象属性组成的关联数组。

语法:

get_object_vars ( object $obj )

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

示例:

<?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
 )

推荐学习:《PHP视频教程

以上就是php中使用什么内置函数可将对象转为数组的详细内容,更多请关注其它相关文章!

相关标签: php 对象 数组