上一页 1 ··· 3 4 5 6 7 8 9 下一页
该文被密码保护。 阅读全文
posted @ 2019-06-03 14:56 ymd666 阅读(5) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-06-03 14:36 ymd666 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Login.php <?php namespace app\index\controller; use think\Controller; use Gregwar\Captcha\CaptchaBuilder; use think\Loader; use app\index\model\Data; 阅读全文
posted @ 2019-05-31 13:50 ymd666 阅读(1423) 评论(0) 推荐(0) 编辑
摘要: thinkPHP的查询表达式大揭秘 主要使用where(条件表达式)方法 语法一:where('字段','条件','值'); 等于:EQ 解析为"=" 不等于:NEQ 解析为"<>" 小于:LT 解析为"<" 小于等于: ELT 解析为"<=" 大于:GT 解析为">" 大于等于:EGT 解析为"> 阅读全文
posted @ 2019-05-30 19:06 ymd666 阅读(1200) 评论(0) 推荐(0) 编辑
摘要: 一.用模型静态方法:update([更新数组],[更新条件]) 1.更新条件用数组给出 public function test() { //$res = $this->data->getMenu(); //获取模型对象 $model = new Data(); $res = Data::updat 阅读全文
posted @ 2019-05-30 16:18 ymd666 阅读(2156) 评论(0) 推荐(0) 编辑
摘要: public function test() { //$res = $this->data->getMenu(); $model = new Data(); //新增多条数据 $res = $model->saveAll([ ['node_name' => 'jjf', 'typeid' => 6] 阅读全文
posted @ 2019-05-30 15:35 ymd666 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 当参数为数组的时候 Data是模型里面类的名字,是模型文件的名字,也是表的名字 public function test() { //$res = $this->data->getMenu(); $model = new Data(); //$data = $this->data->getMenu( 阅读全文
posted @ 2019-05-30 14:45 ymd666 阅读(4720) 评论(0) 推荐(0) 编辑
摘要: 查询分为两种方式,一种是Db查询,一种是模型查询。 Login.php <?php namespce app\index\controller; use think\Controller; use think\Loader; use app\index\model\Data; class Login 阅读全文
posted @ 2019-05-30 13:49 ymd666 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 使用Loader: <?php namespace app\index\controller; use think\Controller; use think\Loader; class Login extends Controller { public function __construct() 阅读全文
posted @ 2019-05-30 10:42 ymd666 阅读(1720) 评论(0) 推荐(0) 编辑
摘要: 在thinkPHP模型查询中,一般有两种方式:数组方式和闭包方式,相对于数组方式只能定义查询条件,闭包方式可以支持更多的连贯操作,包括排序,数量限制等。 在thinkPHP闭包查询中通常使用use进行参数传递 普通闭包查询: $items=ItemModel::all(function($query 阅读全文
posted @ 2019-05-29 13:41 ymd666 阅读(5581) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页