CodeIgniter View
プロジェクトフォルダ
└views
└dir1
└test.php
$this->load->view(
'/dir1/test',
[
'item1' => 'aaa',
'item2' => 'bbb',
],
true
);
プロジェクトフォルダ
└views
└dir1
└test.php
$this->load->view(
'/dir1/test',
[
'item1' => 'aaa',
'item2' => 'bbb',
],
true
);