thinkcmf 使用thinkphp5开发虽然号称支持url兼容模式index.php?s=a/b/c实际上没法打开的需要做如下修改入口文件修改$base_url = '/test/thinkcmf/public/'; \think\Url::root($GLOBALS["base_url"] . 'index.php?s=');HomeBaseController A...
thinkcmf 使用thinkphp5开发虽然号称支持url兼容模式index.php?s=a/b/c实际上没法打开的需要做如下修改入口文件修改$base_url = '/test/thinkcmf/public/'; \think\Url::root($GLOBALS["base_url"] . 'index.php?s=');HomeBaseController A...
$GLOBALS["queryid"] = $id; $res = Db::name("cfamily_post")->where("delete_time", 0)->where('id', 'in', function ($query) { $query->name("cfamily_cate...
有时我们发现无论如何tp5总是强行记录访问日志后来发现可能是数据库配置中没有关掉debug,导致他总是会生成一个访问日志解决办法config.php中 'log' => [ // 日志记录方式,内置 file socket 支持扩展 'type' => 'File', // 日志保存目录...