Why doesn't file_get_contents work?

后端 未结 5 1993
野性不改
野性不改 2020-11-29 07:57

Why does file_get_contents not work for me? In the test file code below, it seems that everyone\'s examples that I\'ve searched for all have this func

5条回答
  •  迷失自我
    2020-11-29 08:12

    If it is a local file, you have to wrap it in htmlspecialchars like so:

        $myfile = htmlspecialchars(file_get_contents($file_name));
    

    Then it works

提交回复
热议问题