标签: php string function
有人可以告诉我为什么我在第4行遇到这个错误?
<? $file = ("textFile.txt"); $read = $open($file, "r"); $data = fread($read, filesize($file)); echo $data; fclose($read); ?>
答案 0 :(得分:0)
改变这个:
$read = $open($file, "r");
到此:
$read = fopen($file, "r");