我有一个通过PHP发件人发送电子邮件的表单。与要发送的电子邮件正文相关的行是:
$body = "New contact: " . $_POST['name'] . $_POST['email'] . $_POST['phone'];
所以会发生的事情是姓名,电子邮件和电话字段都在电子邮件中汇集在一起,例如:新联系人:Markmark@gmail.com1234567
我想在php中的fieds之间插入一个空格,这样我就可以轻松阅读不同的输入。我知道这样做可能非常容易,但我现在已经找了一段时间而无法找到答案。
提前致谢!
答案 0 :(得分:0)
串联串联。
try
{
Long = stol( "12345678901234567890" );
}
catch( std::invalid_argument const& Ex )
{
// Deal with the exception
}
catch( std::out_of_range const& Ex )
{
// Deal with the exception
}
catch( exception const& Ex )
{
// Deal with the exception
}
答案 1 :(得分:0)
$body = "New contact: " . $_POST['name'] ." ". $_POST['email'] . " ". $_POST['phone'];
或
$body = "New contact: " . $_POST['name'] ." ". $_POST['email'] . " ". $_POST['phone'];
答案 2 :(得分:0)
尝试这个concatinate
$body = "New contact: '". $_POST['name']."'." ".'". $_POST['email']."'." ". '".$_POST['phone']."'";