CodeIgniter实现更改view文件夹路径的方法

前端之家收集整理的这篇文章主要介绍了CodeIgniter实现更改view文件夹路径的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

控制view文件夹路径的代码:system/core/loader.PHP

_ci_library_paths,$path); array_unshift($this->_ci_model_paths,$path); array_unshift($this->_ci_helper_paths,$path); $this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths; // 添加配置文件 $config =& $this->_ci_get_component('config'); array_unshift($config->_config_paths,$path); }

更改view文件夹语句为:

load->add_package_path ( FCPATH . 'skins/' . base_skins . '/' );

特别注意:

在新建的skins文件夹下需要再新建一个views文件夹,所有的视图文件存放在skins/views文件夹下

原文链接:https://www.f2er.com/php/24229.html

猜你在找的PHP相关文章