摘要: function __autoload($name) { echo $name.'\n'; if('test1' == $name) { class test1 extends test implements iTemplate { protected static $_instance = null; public static function getInstance() ... 阅读全文
posted @ 2011-08-30 18:01 科学家会武术 阅读(193) 评论(0) 推荐(0)
摘要: class Foo { public function __isset($varname) { echo "ZOMG! isset was called on my $varname!\n"; }}$foo = new Foo;// bar will never get checkedvar_dump(isset($foo->foo, $foo->bar));// Out... 阅读全文
posted @ 2011-08-30 17:55 科学家会武术 阅读(156) 评论(0) 推荐(0)