gpt4 book ai didi

URL 中的 PHP 正则表达式数字

转载 作者:行者123 更新时间:2023-12-02 07:35:57 25 4
gpt4 key购买 nike

我有一个博客,我想在主页上显示 ADS 或特殊文本,而不是在具有 URI /?paged=[number] 的任何其他页面上。我已经尝试了标准正则表达式 /^[0-9].$/ 但它无法匹配。

我不确定我做错了什么或如何去做这件事

if (substr_count($_SERVER[REQUEST_URI], "/") > 0 AND
substr_count($_SERVER[REQUEST_URI], "/?paged=1") == 0 AND
substr_count($_SERVER[REQUEST_URI], "/?paged=2") == 0 AND
substr_count($_SERVER[REQUEST_URI], "/?paged=3") == 0 AND
substr_count($_SERVER[REQUEST_URI], "/?paged=4") == 0 AND
substr_count($_SERVER[REQUEST_URI], "/?paged=5") == 0) {
echo "display special text, banners, and other stuff";
}

这就是我目前正在做的,但我不想做成千上万的这样......

最佳答案

你不能只检查 GET 数组中是否存在 paged 吗?

if(!isset($_GET['paged'])) {
// You know this is the main page.
}

关于URL 中的 PHP 正则表达式数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16522007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com