最贊回答 / 貝喬
如果按正常的調用:
class book {
function getName() {
return 'bookname';
}
}
$book = new book();
$book->getName();
你看一下差別吧
2014-07-15