0
私はこのエラーを抱えている:私が使用しようとしているとき致命的なエラー:ZendのServiceManagerでキャッチされない例外
(!) Fatal error: Uncaught exception 'Zend\ServiceManager\Exception\ServiceNotFoundException' with message 'Zend\ServiceManager\ServiceManager::get was unable to fetch or create an instance for Professor/Controller/WebinarController' in /uov-videos/www/david/plataovirtual/vendor/zendframework/zendframework/library/Zend/ServiceManager/ServiceManager.php on line 526
はこれが起こる:元のプロジェクト外のルーチンでは
$app = Zend\Mvc\Application::init(require 'config/application.config.php');
$application = $app->getMvcEvent()->getApplication();
$sm = $application->getServiceManager();
$webinar_controller = $sm->get('Professor/Controller/WebinarController');
。
提案がありますか?
元のプロジェクトの魔女はコントローラが既に最新です。問題は、別のプロジェクトのサーバールーチンからアクションにアクセスする方法です。 –