0

我一遍又一遍地测试了这个,由于某种原因,代码在我的文件上写了 0 但是当我回显它时,它会写出预期的文本。

这是我的代码:

<?
$author = $_POST["author"];
$email = $_POST["email"];
$comment = $_POST["comment"];
if (isset($author) && isset($email) && isset($comment)) {
    $fileWrite = fopen("Archivo/comentarios.txt","a");
    $bytes = fwrite($fileWrite,$author + "*" + $email + "*" + $comment + "\n");
    fclose($fileWrite);
}

header('Location: http://www.empowernetworkmexico.com.mx/contacto.php');
?>

<html><head></head><body>
<?
    echo $author;
    echo $email;
    echo $comment;
?>
</body></html>

我使用“TEST”作为提交表单上每个参数的文本值进行了测试。

4

2 回答 2

1

plus+不适合 concat 使用.。有关连接运算符 ('.') 的更多信息,请参阅此页面http://www.php.net/manual/en/language.operators.string.php

 if (isset($author) && isset($email) && isset($comment)) {
   $fileWrite = fopen("Archivo/comentarios.txt","a+");
   $bytes = fwrite($fileWrite,$author . "*" . $email . "*" . $comment . "\n");
   fclose($fileWrite);
}
于 2013-04-19T16:12:08.180 回答
0

php 中的字符串连接运算符不是“+”而是“.”。看起来你可能有 JS 或 Python 的经验..

fwrite($fileWrite,$author . "*" . $email . "*" . $comment . "\n");
于 2013-04-19T16:15:08.117 回答