摘要:
php里new self() 一般在类内部使用,作用是对自身类实例化 <?php class test{ public function __construct(){ echo 'hello'; } public function test2(){ new self(); }}test::test2 阅读全文
摘要:
article文章表: user用户表: LEFT JOIN: SELECT article.aid,article.title,user.username FROM article LEFT JOIN user ON article.uid = user.uid RIGHT JOIN: SELEC 阅读全文