错误:函数名称必须是字符串

时间:2014-08-03 09:34:31

标签: php string function

有人可以告诉我为什么我在第4行遇到这个错误?

<?
$file = ("textFile.txt");
$read = $open($file, "r");
$data = fread($read, filesize($file));
echo $data;
fclose($read);
?>

1 个答案:

答案 0 :(得分:0)

改变这个:

$read = $open($file, "r");

到此:

$read = fopen($file, "r");