$fp = fopen($myFile, "r");
//if echo $fp => I GOT NULL
fclose($fp);
但是,如果我做file_get_contents($myFile);
我得到了該文件的字符串數據。
我的文件(Fedora的OS)
-rw-r--r-- 1 apache appli 104 2 nov. 12:54 12_62_xxx.log
" i="" got="" null="" fclose($fp);="" 但是,如果我做file_get_contents($myfile);我得到了該文件的字符串數據。="" 我的文件(fedora的os)="" -rw-r--r--="" 1="" apache="" appli="" 104="" 2="" nov.="" 12:54="" 12_62_xxx.log"="">
$fp = fopen($myFile, "r");
//if echo $fp => I GOT NULL
fclose($fp);
但是,如果我做file_get_contents($myFile);
我得到了該文件的字符串數據。
我的文件(Fedora的OS)
-rw-r--r-- 1 apache appli 104 2 nov. 12:54 12_62_xxx.log
你有該文件的權限嗎? – JackTurky
是因爲file_get_contents($ myFile)我得到了文件內容。 – sophie
使用'var_dump'而不是'echo'來找出'$ fp'確實是什麼:'var_dump($ fp)'; – hakre