问题
I would like to be able to use OOP and create new objects in my controllers in CodeIgniter. So I need to use an autoload-function:
function __autoload( $classname )
{
require_once("../records/$classname.php");
}
But how can I add that to CodeIgniter?
回答1:
You can add your auto loader above to app/config/config.php
. I've used a similar autoload
function before in this location and it's worked quite neatly.
function __autoload($class)
{
if (strpos($class, 'CI_') !== 0)
{
@include_once(APPPATH . 'core/' . $class . EXT);
}
}
Courtesy of Phil Sturgeon. This way may be more portable. core
would probably be records
for you; but check your paths are correct regardless. This method also prevents any interference with loading CI_
libs (accidentally)
回答2:
the User guide about Auto-loading Resources is pretty cleat about it.
To autoload resources, open the application/config/autoload.php file and add the item you want loaded to the autoload array. You'll find instructions in that file corresponding to each type of item.
回答3:
I would suggest using hooks in order to add this function to your code.
Enable hooks in your config/config.php
$config['enable_hooks'] = TRUE;
In your application/config/hooks.php add new hook on the "pre_system" call, which happens in core/CodeIgniter.php before the whole system runs.
$hook['pre_system'] = array( 0 => array( 'function' => 'load_initial_functions', 'filename' => 'your_hooks.php', 'filepath' => 'hooks' ) );
Then in the hooks folder create 2 files:
First: application/hooks/your_functions.php and place your __autoload function and all other functions that you want available at this point.
Second: application/hooks/your_hooks.php and place this code:
function load_initial_functions() { require_once(APPPATH.'hooks/your_functions.php'); }
This will make all of your functions defined in your_functions.php available everywhere in your code.
来源:https://stackoverflow.com/questions/6188727/how-to-add-autoload-function-to-codeigniter