1

mail();我对 PHP函数有一个奇怪的问题。

像这样使用它

$header  = "MIME-Version: 1.0" . "\r\n";
$header .= "Content-type: text/html; charset=utf-8" . "\r\n";
$header .= "Content-Transfer-Encoding: quoted-printable" . "\r\n";
$header .= "Reply-To:" . $email . "\r\n";
$header .= "From: Kontaktformular <noreply@thomas-glaser-foto.de>" . "\r\n";
mail( "mail.me@mail.com", "Message from " . $name . " through your website!", $message, $header );

一切都按预期工作。邮件被发送,一切都被正确编码,主题也很好。

但是当我用这样的单引号更改双引号时:

$header  = 'MIME-Version: 1.0' . '\r\n';
$header .= 'Content-type: text/html; charset=utf-8' . '\r\n';
$header .= 'Content-Transfer-Encoding: quoted-printable' . '\r\n';
$header .= 'Reply-To:' . $email . '\r\n';
$header .= 'From: Kontaktformular <noreply@thomas-glaser-foto.de>' . '\r\n';
mail( 'mail.me@mail.com', 'Message from ' . $name . ' through your website!', $message, $header );

邮件仍会发送,但没有设置主题。相反,它是

www-data@domain.com

特殊字符也被破坏。那里发生了什么?

4

3 回答 3

5

需要使用双引号将特殊换行符 ( "\r\n") 放入。当您使用单引号时,它们不会被视为换行符,而是会被视为文字文本。

PHP 解释器将评估双引号中的材料,但不会对单引号执行此操作。因此,最佳实践是仅在需要评估某些内容时使用双引号(如变量、无法连接时或换行等特殊字符)。

于 2013-02-21T17:45:08.307 回答
5

单引号用于文字字符串,没有变量被替换/扩展,除了\'and之外没有转义序列\\。您编写代码的方式可以保留单引号,除非您必须将换行符双引号为"\r\n".

于 2013-02-21T17:46:35.753 回答
1

请阅读手册:

http://php.net/manual/en/language.types.string.php

单引号

要指定文字单引号,请使用反斜杠 () 对其进行转义。要指定文字反斜杠,请将其加倍 (\)。所有其他反斜杠实例将被视为文字反斜杠:这意味着您可能习惯的其他转义序列,例如 \r 或 \n,将按指定的字面输出而不是具有任何特殊含义。

于 2013-02-21T17:46:21.257 回答