码迷,mamicode.com
首页 >  
搜索关键字:codeigniter    ( 438个结果
六)CodeIgniter源码分析之Exception.php
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
十三)CodeIgniter源码分析之Loader.php
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
三)CodeIgniter源码分析之Common.php
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
五)CodeIgniter源码分析之Router.php
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
二)CodeIgniter源码分析之CodeIgniter.php
$assign_to_config['subclass_prefix'])); }/* * ------------------------------------------------------ * Set a liberal script execution time limit * ...
分类:Web程序   时间:2015-04-10 19:41:04    阅读次数:211
(一)CodeIgniter源码分析之index.php
<?php/* *--------------------------------------------------------------- * APPLICATION ENVIRONMENT *--------------------------------------------------...
分类:Web程序   时间:2015-04-10 19:38:21    阅读次数:118
**CodeIgniter通过hook的方式实现简单的权限控制
根据自己的实际情况,需要两个文件,一个是权限控制类,Acl,另外一个是权限配置的文件acl.php放在了config这个目录下。Acl这个类放在了application/hook/acl.php。通过application/config/config.php文件开启hook,并且配置config这个...
分类:其他好文   时间:2015-04-10 19:37:46    阅读次数:166
四)CodeIgniter源码分析之URI.php
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
十一)CodeIgniter源码分析之Controller.php
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
十二)CodeIgniter源码分析之Model.php
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
438条   上一页 1 ... 27 28 29 30 31 ... 44 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!