1 'Error', 24 E_WARNING => 'Warning', 25 E_PARSE => 'Parsing Error', 26 E_NOTICE => 'Notice', 27 E_CORE_ERROR => 'C...
分类:
Web程序 时间:
2015-04-10 19:50:30
阅读次数:
164
1 'unit', 61 'user_agent' => 'agent'); 62 63 /** 64 * Constructor 65 */ 66 public function __construct() 67 { 68 $thi...
分类:
Web程序 时间:
2015-04-10 19:49:52
阅读次数:
145
1 0)228 {229 foreach ($replace as $key => $val)230 {231 if (isset($config[$key]))232 {233 $config[$key] = $val;234 }235 ...
分类:
Web程序 时间:
2015-04-10 19:43:46
阅读次数:
172
1 config =& load_class('Config', 'core'); 58 $this->uri =& load_class('URI', 'core'); 59 log_message('debug', "Router Class Initialized"); 60 }...
分类:
Web程序 时间:
2015-04-10 19:43:29
阅读次数:
163
$assign_to_config['subclass_prefix'])); }/* * ------------------------------------------------------ * Set a liberal script execution time limit * ...
分类:
Web程序 时间:
2015-04-10 19:41:04
阅读次数:
211
<?php/* *--------------------------------------------------------------- * APPLICATION ENVIRONMENT *--------------------------------------------------...
分类:
Web程序 时间:
2015-04-10 19:38:21
阅读次数:
118
根据自己的实际情况,需要两个文件,一个是权限控制类,Acl,另外一个是权限配置的文件acl.php放在了config这个目录下。Acl这个类放在了application/hook/acl.php。通过application/config/config.php文件开启hook,并且配置config这个...
分类:
其他好文 时间:
2015-04-10 19:37:46
阅读次数:
166
1 config =& load_class('Config', 'core'); 38 log_message('debug', "URI Class Initialized"); 39 } 40 41 42 // ---------------------------------...
分类:
Web程序 时间:
2015-04-10 19:32:58
阅读次数:
175
1 $class)21 {22 $this->$var =& load_class($class);23 }24 25 //给超级控制器加载Loader组件,这个组件是它的好助手,很多时候你会经常用到$this->load->xxx()的形式加载某个东西,26 //这个lo...
分类:
Web程序 时间:
2015-04-10 19:32:45
阅读次数:
118
1 18 * 做很多事情。例如想在model里面加载某个library,就可以$this->load->library(xxx),其实它都是盗用controller的。19 */20 function __get($key)21 {22 $CI =& get_instance();...
分类:
Web程序 时间:
2015-04-10 19:29:47
阅读次数:
140