问题描述
|
解决方法
由于您尝试读取的文件是通过远程请求而不是本地文件进行的,因此它将大大改变您想要读取该数据的方式。根据fread()手册页,您需要分块读取文件。或者,尝试使用file_get_contents()来简化代码:
$lessonDescription = file_get_contents(\'http://nova.umuc.edu/~ct386a28/lovej2ee/exercise5/content/vocabulary5.txt\');
echo $lessonDescription;