摘要:
public $page = ""; public $size = ""; public function getPageAndSize($data){ $this->page = empty($data['page'])?"1":$data['page']; $this->size = empty 阅读全文
摘要:
<?php trait A{ public function a(){ echo "this is trait A a\n"; } public function b(){ echo "this is trait A b\n"; } } class Test{ use A; } //$test = 阅读全文