PHP フレームワーク FuelPHP
解決したいこと
FuelPHPを勉強中です。エラーが出ているのですが、解決方法が全くわからず困っております。
ビューファイルを入れ子にして表示することにトライしています。
//ビュー側
index.php
head.php
content.php
footer.php
//コントローラー側
home.php
を作成しています
発生している問題・エラー
Fuel\Core\FuelException [ Error ]:
The requested view could not be found: content.php
COREPATH/classes/view.php @ line 492
例)
487 }
488
489 // did we find it?
490 if ( ! $this->file_name)
491 {
492 throw new \FuelException('The requested view could not be found: '.\Fuel::clean_path($search['file']).'.'.$search['extension']);
493 }
494
495 return $this;
496 }
497
このview.phpは作成してないです。また、検索してもファイルがありません。
自分で試したこと
検索したり、コードを見直してもこのエラーから進まず困っています。ヒントよろしくお願いいたします。
0