摘要:
thinkPHP的查询表达式大揭秘 主要使用where(条件表达式)方法 语法一:where('字段','条件','值'); 等于:EQ 解析为"=" 不等于:NEQ 解析为"<>" 小于:LT 解析为"<" 小于等于: ELT 解析为"<=" 大于:GT 解析为">" 大于等于:EGT 解析为"> 阅读全文
摘要:
一.用模型静态方法:update([更新数组],[更新条件]) 1.更新条件用数组给出 public function test() { //$res = $this->data->getMenu(); //获取模型对象 $model = new Data(); $res = Data::updat 阅读全文
摘要:
public function test() { //$res = $this->data->getMenu(); $model = new Data(); //新增多条数据 $res = $model->saveAll([ ['node_name' => 'jjf', 'typeid' => 6] 阅读全文
摘要:
当参数为数组的时候 Data是模型里面类的名字,是模型文件的名字,也是表的名字 public function test() { //$res = $this->data->getMenu(); $model = new Data(); //$data = $this->data->getMenu( 阅读全文
摘要:
查询分为两种方式,一种是Db查询,一种是模型查询。 Login.php <?php namespce app\index\controller; use think\Controller; use think\Loader; use app\index\model\Data; class Login 阅读全文
摘要:
使用Loader: <?php namespace app\index\controller; use think\Controller; use think\Loader; class Login extends Controller { public function __construct() 阅读全文