ThinkPHP5.1x数据查询表达式报错,和5.0x版的有区别?
原来5.0x版本的原来可以这么写,没有报错并且正常查询到数据!$ids = array( 0 => 121, 1 => 125, 2 => 135 ) $where=[] $where['site_id'] = ['…
ThinkPHP5.1 group,page和count一起使用的问题
sql语句简略 $sql = User::alias()->leftjoin()->field()->where() $count = $sql->count() $sql = $sql->order()->group()->page()-&g…
swagger-php添加basePath后不生效
这是我的配置文件: /** * @OA\Swagger( * swagger="2.0", * schemes={"http"} * host="127.0.0.1:8089", * basePath="/test/api", * @OA\Info( * tit…
thinkphp5.1提示模块不存在:index
本地运行正常 URL地址:www.xx.com/public/index.php/Index/Index/first_0 项目目录结构如下: .htaccess已配置 <IfModule mod_rewrite.c> Optio…
thinkphp5.1多模型事务
和tp3.2.3写法一样 $UserModel = new UserModel $UserModel -> startTrans() $MoneyRecordModel = new MoneyRecordModel $r1=$UserModel->contro…
tp5.1 workerman wss 做服务器,同一帐号不同平台获取数据重复
tp5.1 workerman wss 做服务器,同一帐号不同平台(小程序和app)都连接websocket,服务器推送聊天历史时,数据重复展示。…
phpStudy使用php7.3版本安装tp5.1报错502 Bad Gateway
安装完thinkphp5.1版本 使用phpstudy nginx + php7.3版本访问直接报 502 Bad Gateway 错误 更换成php7.2就正常访问 有大神遇到过吗? …
thinkphp5.1.38 域名路由绑定后,怎样才能用url方法,生成不传第4个参数也能生成带域名的URL地址
参照thinkphp5.1手册了注册了域名路由,URL生成时会自动带上域名的,实际上并没有,不知道是我路由注册的方法有问题,还是URL生成存在BUG路由配置 Ro…
thinkphp5.1事务操作 是否正确 如何判断是否成功
$first=input('param.first') $second=input('param.second') Db::transaction(function ($first,$second) { $sort1=Db::name('user')->where('use…
- 共 1 页
- 1