示例#1
0
 private function test()
 {
     echo "\nCall Staticly:\n";
     TestClass::create('first', 'second');
     echo "\nCall Directly:\n";
     new TestClass('first', 'second');
 }