PHP GET, if / esle

发布于 2024-11-16 21:13:14 字数 179 浏览 1 评论 0原文

这段代码有什么问题:

<?php
if ($_GET['variable'] == "a") {
    $variable = "a";
}
else {
    $variable = "b" 
}
echo $variable;
?>

我收到内部服务器错误。

What's wrong with this code:

<?php
if ($_GET['variable'] == "a") {
    $variable = "a";
}
else {
    $variable = "b" 
}
echo $variable;
?>

I get an internal server error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

红墙和绿瓦 2024-11-23 21:13:14

您在这里漏掉了一个分号:$variable = "b";

You missed a semicolon here: $variable = "b";

瑾兮 2024-11-23 21:13:14
<?php
$variable = 'b';
if (isset($_GET['hop']) && $_GET['hop'] == "a")
{
    $variable = 'a';
}

echo $variable;
?>

有关您做错了什么的解释,请参见此处: http://php.net/manual/ en/getting-started.php

<?php
$variable = 'b';
if (isset($_GET['hop']) && $_GET['hop'] == "a")
{
    $variable = 'a';
}

echo $variable;
?>

For an explanation on what you did wrong look here: http://php.net/manual/en/getting-started.php

Bonjour°[大白 2024-11-23 21:13:14

$variable 的 else 部分缺少分号。

else {
    $variable = "b"; 
}

Semicolon is missing in else part $variable.

else {
    $variable = "b"; 
}
∞觅青森が 2024-11-23 21:13:14

您忘记了 $variable = "b" 行中的尾随 ;

You forgot the trailing ; on the $variable = "b" line.

書生途 2024-11-23 21:13:14

缺少分号

$variable = "b";

Mising a semicolon

$variable = "b";
攒眉千度 2024-11-23 21:13:14

缺少分号不会给出内部服务器错误。检查根目录中是否有 .htaccess 文件以及其配置是否正确。

Missing a semi-colon does not give an internal server error. Check to see if you have a .htaccess file in the root and if its configured correctly.

终止放荡 2024-11-23 21:13:14

第 6 行中可能缺少 ;

    $variable = "b";

因为其他一些答案也提供了替代方案

echo isset($_GET['hop']) && ($_GET['hop'] == "a")
     ? 'a'
     : 'b';

:)

Propably the missing ; in line 6

    $variable = "b";

Because some other answer provide alternatives too

echo isset($_GET['hop']) && ($_GET['hop'] == "a")
     ? 'a'
     : 'b';

:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文