需要帮助检查 { } 的 if else 语句
沿着这条线的某个地方,我添加或省略了一个 { } 但我就是不知道在哪里
<?php
if (file_exists('config.php')) {
require_once('config.php');
{
if ( $EDITED_CONFIG == false )
{
header("Location: welcome.php");
}
}
}
else (file_exists('default-config-new.php')) {
require_once('default-config-new.php');
{
if ( $EDITED_CONFIG == false )
{
header("Location: welcome.php");
}
}
}
?>
如果文件存在则需要它,如果编辑= false 重定向,如果 true 结束脚本。
否则
如果文件存在则需要它,如果编辑= false 重定向,如果 true 结束脚本。
因此,如果第一个文件不存在,则不得要求它或查找已编辑的文件,它必须跳到第二个文件,如果存在,则必须检查已编辑的文件,然后如果为 false,则重定向。如果第一个文件为 true,则必须结束脚本并加载页面。因此,如果第一个文件为真,则它不能检查第二个文件。
这也是最简单的方法吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果你正确地缩进你的代码,你的错误就会变得明显。
一些可能有用的链接:
If you indent your code properly, your error will become evident.
A few links that may be useful:
您没有关闭 if 语句:应该是这样的:
已编辑。此外,在使用另一个 elseif 或 else 语句之前,您需要将该语句要执行的所有代码放在括号中:
You're not closing your if statements: Should be something like:
Edited. Also, you need to close brackets around all code to be executed for that statement, before you can use another elseif or else statement:
我相信您缺少 else 之后的 { 将您想要的内容包含在“else”块内
You are missing the { after the else to enclose what you want inside the "else" block i believe
你需要写
你有
You need to write
You have got