2018年3月7日 星期三

php 層層 include

>> root.php

i am root.php

include_once './inc_folder_1/inc_1.php';
 -----------------------------------------------------------
>> inc_1.php

i am inc_1.php

 include_once(__DIR__.'/inc_folder_2/inc_2.php');
 -----------------------------------------------------------
>> inc_2.php

i am inc_2.php