对获取页面 ID 感到困惑
请快速浏览一下下面的代码:
<?php
$pagexfoot = $_GET[page_id];
?>
<?php
if ($pagexfoot == '5' OR !isset($_GET['page_id'])) {
echo 'Hello';
} else {
echo 'Bye';
}
?>
因此,如果用户位于 index.php?page_id=5 上,那么它将回显“Hello”,并且在其他任何地方都会回显“Bye”。现在,如何在页面 index.php?page_id=5 和 index.php 上回显“Hello”并在所有其他页面上回显“Bye”?谁能解开这个谜题...
Please have a quick look at the code below:
<?php
$pagexfoot = $_GET[page_id];
?>
<?php
if ($pagexfoot == '5' OR !isset($_GET['page_id'])) {
echo 'Hello';
} else {
echo 'Bye';
}
?>
So, if the user is on index.php?page_id=5 then it will echo "Hello" and it will echo "Bye" anywhere else. Now, how do I echo "Hello" on page index.php?page_id=5 and index.php and echo "Bye" on all other pages? Who can solve this puzzle...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我们正在使用 ||运算符检查它是否未设置或值为 5,如果是,则告诉“Hello”,否则告诉“再见”。
We are using the || operator to check if either it isn't set or the value is 5, if so tell "Hello" and else, Bye.
通过尝试上面的代码,你的代码对我来说很好:)
You code loks fine to me by try the above code :)