file_get_contents with relative path

前端 未结 4 674
孤独总比滥情好
孤独总比滥情好 2020-12-08 19:29

I have the following directory structure.

/var/www/base/controller/detail.php
/var/www/base/validate/edit.json
/var/www/html

Within /

4条回答
  •  一个人的身影
    2020-12-08 19:56

    try using this

    $json = file_get_contents("/path/to/your/file/edit.json", true);
    

    As of PHP 5 the FILE_USE_INCLUDE_PATH constant can be used to trigger include path search. This is not possible if strict typing is enabled since FILE_USE_INCLUDE_PATH is an int. Use TRUE instead.

提交回复
热议问题