magic function
__construct
__destruct()
__autoload()
__get()
取得私有屬性
__set()
class test{
private $page='aaa';
public function __get($name){
return $this->$name;
}
}
$test = new test();
echo $test->page;
// Output
// aaa