在php中,可以使用內建函數get_object_vars()來將物件轉為數組,該函數可傳回由物件屬性組成的關聯數組,語法格式「get_object_vars(object)」。
本教學操作環境: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中文網其他相關文章!