php物件轉數組方法
在php中將物件轉數組的方法,可以透過使用「get_object_vars()」函數來實現,函數的語法為“get_object_vars($obj)”,其參數$obj表示為需要轉換的對象,該函數傳回值為對象屬性所組成的關聯數組。
get_object_vars說明
get_object_vars ( object $obj ) : array
#傳回由 obj 指定的物件中定義的屬性所組成的關聯陣列。
註:在 PHP 4.2.0 之前的版本中,如果在 obj 物件實例中宣告的變數沒有被賦值,則它們不會在傳回的陣列中。而在 PHP 4.2.0 之後,這些變數作為鍵名將被賦予 NULL 值。
使用範例
<?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中文網其他相關文章!