我正在学习php。我想将字符串写入文件,但没有任何反应。我该如何调试它?我有使用python的经验。在那里我可以使用终端来尝试小代码片段,但我不知道如何检查 php 中的代码。
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w');
$stringData = "Bobby Bopper\n";
$myvar = fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);