CI框架附属类用法分析
本文实例讲述了ci框架附属类用法。分享给大家供大家参考,具体如下:
有些时候,你可能想在你的控制器之外新建一些类,但同时又希望 这些类还能访问 codeigniter 的资源
任何在你的控制器方法中初始化的类都可以简单的通过 get_instance()
函数来访问 codeigniter 资源。这个函数返回一个 codeigniter 对象。
通常来说,调用 codeigniter 的方法需要使用 $this
$this->load->helper('url'); $this->load->library('session'); $this->config->item('base_url');
但是 $this
只能在你的控制器、模型或视图中使用,如果你想在 你自己的类中使用 codeigniter 类,你可以像下面这样做:
首先,将 codeigniter 对象赋值给一个变量:
$ci =& get_instance();
一旦你把 codeigniter 对象赋值给一个变量之后,你就可以使用这个变量 来 代替 $this
$ci =& get_instance(); $ci->load->helper('url'); $ci->load->library('session'); $ci->config->item('base_url');
如果你在类中使用``get_instance()
`` 函数,最好的方法是将它赋值给 一个属性 ,这样你就不用在每个方法里都调用 get_instance()
了。
例如:
class example { protected $ci; // we'll use a constructor, as you can't directly call a function // from a property definition. public function __construct() { // assign the codeigniter super-object $this->ci =& get_instance(); } public function foo() { $this->ci->load->helper('url'); redirect(); } public function bar() { $this->ci->config->item('base_url'); } }
在上面的例子中, foo()
和 bar()
方法在初始化 example 类之后都可以正常工作,而不需要在每个方法里都调用 get_instance()
函数。
更多关于codeigniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《php优秀开发框架总结》、《thinkphp入门教程》、《thinkphp常用方法总结》、《zend framework框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于codeigniter框架的php程序设计有所帮助。
推荐阅读
-
php文件缓存类用法实例分析_PHP
-
Zend Framework教程之MVC框架的Controller用法分析,zendmvc_PHP教程
-
CI框架简单邮件发送类实例_PHP
-
php中注册器模式类用法实例分析
-
CI框架源码阅读---------基准测试类Benchmark.php_PHP教程
-
PHP中类的继承和用法实例分析,php实例分析
-
php反射类ReflectionClass用法分析,reflectionclass用法_PHP教程
-
php判断类是否存在函数class_exists用法分析
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
CI框架数据库查询之join用法分析_php实例