TP5中模板內容的替換和全域性配置
阿新 • • 發佈:2018-12-27
首先在application的配置檔案config.php中新增:
// 基礎替換字串 use think\Request; $request = Request::instance(); $base = $request->root(); $root = strpos($base, '.') ? ltrim(dirname($base), DS) : $base; if ('' != $root) { $root = '/' . ltrim($root, '/'); }
配置檢視輸出字串內容的替換
// 檢視輸出字串內容替換 'view_replace_str'