CodeIgniter预定义全局success、error提示首先找到CI的公共函数类/全局函数类文件:/system/core/Common.php这里在该文件最底部添加如下代码:/** * 成功跳转函数 * @access public * @param mixed * @return mixed */ if ( ! function_exists('success')) { function success($tag,...
记录生活,存储回忆
CodeIgniter预定义全局success、error提示首先找到CI的公共函数类/全局函数类文件:/system/core/Common.php这里在该文件最底部添加如下代码:/** * 成功跳转函数 * @access public * @param mixed * @return mixed */ if ( ! function_exists('success')) { function success($tag,...
CodeIgniter去除index.php Nginx规则范例:server { listen 80; server_name ci.www.fity.cn; index index.html index.htm index.php; root /htdoc/web/citest; location / ...