本文整理汇总了PHP中Autoload::exist方法的典型用法代码示例。如果您正苦于以下问题:PHP Autoload::exist方法的具体用法?PHP Autoload::exist怎么用?PHP Autoload::exist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Autoload
的用法示例。
在下文中一共展示了Autoload::exist方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: executeController
/**
* The function executes controller built on its name and arguments.
*
* @static
* @access public
* @param string $className The controller class name.
* @param array $args The arguments array.
* @return string The result of executed controller.
*/
public static function executeController($className, array $args = array())
{
$Controller = null;
$res = array('method' => null, 'args' => array(), 'argsText' => '');
for ($i = 0; $i < count($args); $i++) {
$arr = array_slice($args, 0, count($args) - $i);
$name = $className . '_' . implode('_', $arr);
if (Autoload::exist($name) !== false) {
$Controller = new $name();
$Controller->setView();
if ($Controller->isHidden()) {
continue;
}
$res = self::buildParams($Controller, array_slice($args, count($args) - $i));
break;
}
}
if (!$Controller) {
$Controller = new $className();
$Controller->setView();
$res = self::buildParams($Controller, $args);
}
return $Controller->runMethod($res['method'], $res['args'], $res['argsText']);
}