關於php中想讓物件以陣列的形式訪問,這時候就需要使用到get_object_vars()函數了。先來介紹一下這個函數。
官方文件是這樣解釋的:
array 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 )
物件轉數組具體實作:
function objectToArray($obj) { //首先判断是否是对象 $arr = is_object($obj) ? get_object_vars($obj) : $obj; if(is_array($arr)) { //这里相当于递归了一下,如果子元素还是对象的话继续向下转换 return array_map(__FUNCTION__, $arr); }else { return $arr; } }
陣列轉物件的具體實作:
function arrayToObject($arr) { if(is_array($arr)) { return (object)array_map(__FUNCTION__, $arr); }else { return $arr; } }
更多相關內容請造訪PHP中文網:PHP影片教學
以上是php物件轉數組的函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!