他のphpファイルを読み込もうとしたら以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
Fatal error: Uncaught Error: Class 'MyApp\Controller\Submit' not found in /home/vagrant/Atlantis/public_html/index.php:9 Stack trace: #0 {main} thrown in /home/vagrant/Atlantis/public_html/index.php on line 9
該当のソースコード
【index.php】
<?php $app = new MyApp\Controller\Submit(); // $app->run(); ?>
【Submit.php】
<?php namespace MyApp\Controller; class Submit extends \MyApp\Controller { public function run() { if ($_SERVER['REQUEST_METHOD'] === 'POST') { $this->postProcess(); } } }
試したこと
index.php
の
$app = new MyApp\Controller\Submit();
で
class Submit extends \MyApp\Controller
を読み込みたいのですが、上記のエラー文が表示されます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。