我对此有问题。我使用屏幕传递数据并生成电子邮件,该字符串格式是这样的。
/var/lib/asterisk/agi-bin/scllevel/email.php '20' '2012-08-08 12:00:43' 'bhavik.patel@gmail.com' 'For Less Attendances' '"<p>rntFor late Coming</p>rn1111111111111111rntesting this is testing's this is "Testing"rn"' '178' '22' 'info@broadcast.com'
我有一个问题,例如在单引号中,身体部分设置不正确,它们表现为我的身体部位从不同的命令开始
"<p>['rntFor late Coming</p>rn1111111111111111rntesting this is testing's this is "Testing"rn"]
如果任何用户主体是这样的,那么就会产生问题,所以对此有任何想法。我已经使用过 htmlentities、addcslash 和 stripslashes 等 PHP 函数,但徒劳无功。
您的问题是您要删除斜杠。你的php以斜杠字符串的形式获取邮件,你需要做的是使用"stripslashes
"将斜杠字符串转换为非斜杠形式,例如
你需要简单地在字符串ASCII表示中将"r
"-s转换为0x10
-s。
这个简单的任务不需要htmlentities
和其他功能。
如果还不够,请在此处粘贴您的电子邮件.php,我会检查一下。