我目前正在使用 fwrite,这是错误输出:
Parse error: syntax error, unexpected ')' in /home/blah/blahblah.com/write/submit.php on line 5
代码如下:
$strlen = strlen ( $_REQUEST["content"] );
$content = $_REQUEST["content"];
$title = $_REQUEST["title"];
$fp = fopen( "/home/blah/blahblah.com/write/texts/" . $_POST["title"] . ".txt" , a+ );
fwrite ( $fp , $content , $strlen );
fclose ( $fp );
请帮忙!我什至试图输入文本的 strlen (这是不必要的),这样它就不会期待其他任何东西了!