私は CodeIgniter のフレームワーク構造を理解しようとしていますが、始めたばかりで、この小さな誤解を思いつきました。
誰かが次のことを理解するのを手伝ってくれませんか:-
1-なぜ彼らは参照を使用してクラスのインスタンスを渡すのですか...つまり、単純な変数だけではないのですか?
2-そして、関数がクラスの名前を「文字列変数」ではなく配列に保存するのはなぜですか(私のphp用語を最悪だと判断しないでください).. ?!
static $_classes = array();
^^^^^^^ this cloud be just ("") or am i missing something
ここに関数があるので、探しに行く必要はありません。
function &load_class($class, $directory = 'libraries', $prefix = 'CI_')
{
static $_classes = array();
// Does the class exist? If so, we're done...
if (isset($_classes[$class]))
{
return $_classes[$class];
}
$name = FALSE;
// Look for the class first in the local application/libraries folder
// then in the native system/libraries folder
foreach (array(APPPATH, BASEPATH) as $path)
{
if (file_exists($path.$directory.'/'.$class.'.php'))
{
$name = $prefix.$class;
if (class_exists($name) === FALSE)
{
require($path.$directory.'/'.$class.'.php');
}
break;
}
}
// Is the request a class extension? If so we load it too
if (file_exists(APPPATH.$directory.'/'.config_item('subclass_prefix').$class.'.php'))
{
$name = config_item('subclass_prefix').$class;
if (class_exists($name) === FALSE)
{
require(APPPATH.$directory.'/'.config_item('subclass_prefix').$class.'.php');
}
}
// Did we find the class?
if ($name === FALSE)
{
// Note: We use exit() rather then show_error() in order to avoid a
// self-referencing loop with the Excptions class
exit('Unable to locate the specified class: '.$class.'.php');
}
// Keep track of what we just loaded
is_loaded($class);
$_classes[$class] = new $name();
return $_classes[$class];
}