我一直在搜索SO超过一个小时,但无法解决我的问题。由于某种原因,第262行中的“Parse Error:语法错误意外”页面上存在错误。它是关闭else条件的括号。
我删除了其他条件,代码运行顺利。然后我回复并删除了其他内容的所有条件,但仍然是错误相同,我很困惑为什么结束括号是意外的。
这是代码
if(isset($_POST['sendEmailNotification'])){
$keyword = $_POST['sendEmailNotification'];
$sql = "SELECT * FROM team where keyword = '$keyword'" ;
$sql_result = mysqli_query($conn,$sql) or die (mysqli_error($conn));
while ($row = mysqli_fetch_assoc($sql_result)){
$abcd = $row;
}
$htmlContent = file_get_contents ("email_template_header.php");
$registerURL = $siteURL.'/register/';
if ($abcd['claimed'] == 1) {
$htmlContent .= "<p>Hey,</p>";
$htmlContent .= "<p>Hope you're doing well!!!</p>";
$htmlContent .= "<p>Someone has submitted an image related to your business on www.trustedbusiness.reviews. He/She might be your customer or may be your employee/ex-employee.</p>";
$htmlContent .= "<p>You can approve the image just by following these simple steps:</p>";
$htmlContent .= "<ol>";
$htmlContent .= "<li>View Business Center</li>";
$htmlContent .= "<li>Click on Business Name</li>";
$htmlContent .= "<li>Select 'Image' option from sidebar</li>";
$htmlContent .= "<li>Approve the 'Image' & you're done</li>";
$htmlContent .= "</ol>";
$htmlContent .= "<p>If you need any help or have any suggestions to make the User Experience better. Please feel free to contact Trusted Business Reviews team.</p>";
$htmlContent .= "<p>Thanks</p>";
}
else {
$htmlContent .= "<p>Hey,</p>";
$htmlContent .= "<p>Hope you're doing well!!!</p>";
$htmlContent .= "<p>Someone has submitted an image related to your business on www.trustedbusiness.reviews. He/She might be your customer or maybe your employee/ex-employee.</p>";
$htmlContent .= "<p>Uh-oh!</p>";
$htmlContent .= "<p>You haven't claimed your business on Trusted Business Reviews? No problem!</p>";
$htmlContent .= "<p>You can claim this by following these simple & super easy steps:</p>";
$htmlContent .= "<ol>";
$htmlContent .= "<li>Register here</li>";
$htmlContent .= "<li>Open your Business Listing Page</li>";
$htmlContent .= "<li>Click on 'Claim This Business'</li>";
$htmlContent .= "<li>Enter your domain email address</li>";
$htmlContent .= "<li>Enter Verification Code</li>";
$htmlContent .= "<li>You're Done</li>";
$htmlContent .= "</ol>";
$htmlContent .= "<p>You can make the desired changes in the information (if needed) after 'claim this business' process.</p>";
$htmlContent .= "<p>Later, You can approve the image just by following these simple steps:</p>";
$htmlContent .= "<ol>";
$htmlContent .= "<li>View Business Center</li>";
$htmlContent .= "<li>Click on Business Name</li>";
$htmlContent .= "<li>Select 'Image' option from sidebar</li>";
$htmlContent .= "<li>Approve the 'Image' & you're done</li>";
$htmlContent .= "</ol>";
$htmlContent .= "<p>If you need any help or have any suggestions to make the User Experience better. Please feel free to contact Trusted Business Reviews team.</p>";
$htmlContent .= "<p>Thanks</p>";
}
$htmlContent .= file_get_contents ("email_template_footer.php");
$to = $abcd['b_email'];
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = 'localhost';
$mail->SMTPAuth = false;
$mail->SMTPSecure = 'tls';
$mail->Port = 25;
$mail->setFrom('abc@mail.com', 'ABC');
$mail->addAddress($to);
$mail->isHTML(true);
$mail->Subject = 'New Image Uploaded';
$mail->Body = $htmlContent;
$mail->send();
$mail->clearAddresses();
}
答案 0 :(得分:2)
评论不足以作为可能的答案进行评论:
我有一连串的神秘感&#34;解析错误&#34;当我的代码(像你的)很好。
在我的情况下,它是由我的电脑(操作系统/浏览器?)在网页上复制和粘贴示例代码时以某种方式插入的虚假隐藏字符引起的。
e.g。 else {
如果&#34;空间&#34;介于&#34; else&#34;和&#34; {&#34;实际上并不是一个空间&#34;那么它可能会导致后续的{
被忽略。结果:提前终止else语句
即else $htmlContent .= "<p>Hey,</p>";
你的其余部分将被视为else块之外的陈述,以及结束&#34;}&#34;无效。
尝试删除您的else子句并手动重新键入。
如果不起作用,请在编辑器中打开代码以显示隐藏的字符。在HTML工具包中(我认为) view-&gt; editor-&gt;隐藏字符将显示诸如纯黑色而非纯白色空格的字符。