使用fopen获取语法错误

时间:2017-03-02 20:12:44

标签: php

我在GoDaddy linux服务器上有一个php程序,它只是试图fopen,然后fwrite到一个文件。这是fopen声明中的错误。

<?php
$filename = "calendar3.data";
$filedata = "Hello world";

$fp = fopen($filename, 'w');
//fwrite($fp, $filedata);
fclose($fp);

echo "file successfully written";

/*
PHP Parse error:  syntax error, unexpected ''w'' (T_CONSTANT_ENCAPSED_STRING) in /home/xxxxxxxx/public_html/fwrite.php on line 5
*/
?>

我把程序剥离到几乎没有,每当我执行程序时仍然会得到错误(显示在代码底部)。

0 个答案:

没有答案