我有这段代码
$file = 'courses/' . $fourth;
$whatToRead = @fopen($file, "r") or die ("Could not read file");
$file_contents = fread($whatToRead, filesize($file));
$new_file_contents = nl2br($file_contents);
当它从文件中返回文本时,我回复它并且所有引号都返回为“而不是'有没有人知道如何解决这个问题