1. 程式人生 > >php 給物件動態增加屬性

php 給物件動態增加屬性

示例程式碼

<?php
error_reporting(-1);
ini_set('display_errors','on');

class A { 
    public $a = 'hello';

    public function add() {
        $this->b = 'world';
    }-  
    public static function p() {
        echo 'world',PHP_EOL;
    }-  
}

$a = new A;
$a->add();
$a->c = 'test';
$a->p();

var_dump($a);

輸出
world
object(A)#1 (3) {
  ["a"]=>
  string(5) "hello"
  ["b"]=>
  string(5) "world"
  ["c"]=>
  string(4) "test"
}

補充:物件可以呼叫物件所屬類的靜態方法,如
$a->p();