最赞回答 / 贝乔
如果按正常的调用:
class book {
function getName() {
return 'bookname';
}
}
$book = new book();
$book->getName();
你看一下差别吧
2014-07-15