ThinkPHP 模型高級

Read 查詢操做應當靜態調用,更新和刪除操做則動態調用php // 查詢單個記錄 $this->where('name', 'thinkphp')->find(); // 調用動態查詢方法 $this->getByName('thinkphp'); // 查詢數據集 $this->where('id', '>', 0)->limit(10)->order('id desc')->select()
相關文章
相關標籤/搜索