本文整理匯總了PHP中AppKernel::getModule方法的典型用法代碼示例。如果您正苦於以下問題:PHP AppKernel::getModule方法的具體用法?PHP AppKernel::getModule怎麽用?PHP AppKernel::getModule使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類AppKernel
的用法示例。
在下文中一共展示了AppKernel::getModule方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: process
/**
* @param AppKernel $kernel
* @param \Zero\Component\Kernel\Container $app_container
* @throws \Exception
*/
public static function process(AppKernel $kernel, $app_container)
{
global $argv;
if (!isset($argv[1])) {
throw new \Exception("命令行第一個參數應該是需要調用的方法");
}
$controller = $argv[1];
if (strpos($controller, ':') === false) {
throw new \Exception("第一個參數錯誤,格式應該為<module_name>:<command_name>:<action_name>");
}
$arguments = array_splice($argv, 2);
try {
list($module_name, $command_name, $action_name) = explode(':', $controller);
$module = $kernel->getModule($module_name);
$command = $module->getCommand($command_name, $action_name);
if (method_exists($command, '__invoke')) {
/** @var \Symfony\Component\HttpFoundation\Response $response */
call_user_func_array($command, $arguments);
} else {
throw new \Exception('Command must has the __invoke public function!');
}
} catch (\Exception $e) {
throw $e;
}
}