我调用了TP5里的运行文件,但是在swoole里的task中缺实例化不了
我在代码中,define('APP_PATH', DIR . '/../application/');require DIR . '/../thinkphp/base.php';直接引用了,TP框架中的文件,在new的时候直接…
符合条件的数据条数查询不准确,求解
Db::name('reb') ->where('member_id', $user['id']) ->whereTime('create_time', $month) ->useSoftDelete('delete_time') ->field("DATE_FORMAT(cre…
thinkphp5如何平滑重启queue消息队列
如题,开启 php think queue:work 后,我改如何平滑重启这个消息队列消费管理命令 根据该命令的--help提示它的命令[option]并没有平滑重启的机制,即…
ThinkPHP命令行运行报错'think\Console' not found
环境 Thinkphp5.1 命令行执行 php s1.php 错误提示: PHP Fatal error: Uncaught Error: Class 'think\Console' not found in /www/***/vendor/topth…
thinkphp5 中的session 不更新的问题
在做微信公众号开发中遇到这样一个问题:在电脑端的微信浏览器访问A页面后,服务器后端更新了session,用的是tp5助手函数session('user',$user)然后手…
高手帮忙看下 tp5 框架数据查询语句【苹果cms v10程序】
function actor_vod($actor){ $table = 'Vod'; $actor_vod_list = Db::name($table)->where('vod_actor', ['like', '%' . $actor . '%'])->select();…
tp5.1路由绑定模块 分组设置
网站有两个模块,一个是admin,一个是indexindex模块需要设置路由,admin不用。如果是在route目录下的route.php设置路由,所有的模块都会被影响到。 …
tp5.1如何切换模块访问
if(Request::isMobile()){ //Config::set('default_module','wap'); //$this->redirect('wap/'.Request::controller().'/'.Request::action()); } 需…
tp5路由设置城市分站的问题
分站类似这样 xxx.com/wuhan路由设置 Route::get(':city$','index/Index/index')->pattern(['city' => 'w+']);这样是可以跳过去但是分类下的路由又不…
TP5.1非根目录下访问静态资源
TP5.0的时候默认有__STATIC__来访问public目录下的static文件夹内容,但是到了TP5.1之后,没有了这个东西。根据文档的模板替换配置,设置了这样的配…
thinkphp5 域名路由 未定义数组下标 0
1、config.php已经把url_domain_deploy设置为true 2、route.php中设置如下: return [ //别名配置,别名只能是映射到控制器且访问时必须加上请求的方…