检查字符串中是否有带有“通配符”的子字符串

发布于 2024-12-06 11:25:24 字数 385 浏览 1 评论 0原文

是否可以检查字符串中是否有子字符串加通配符?

我正在检查 url 中的子字符串,我知道有 substring 函数,但我想知道是否可以使用 * 字符?以下是到目前为止我的功能。

function press_getUrl(){

$valid = true;
$current_url = $_SERVER['REQUEST_URI'];
//This is where I am checking for a substring plus whatever is after.
if ($current_url == "/search/node/*"){$valid = false;}

return $valid;

}

$pressValid = press_getUrl();

Is it possible to check a string for a substring plus a wild character?

I am checking a url for a substring and I know there is the substring function but I am wondering if you can use the * character? Below is my function so far.

function press_getUrl(){

$valid = true;
$current_url = $_SERVER['REQUEST_URI'];
//This is where I am checking for a substring plus whatever is after.
if ($current_url == "/search/node/*"){$valid = false;}

return $valid;

}

$pressValid = press_getUrl();

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

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

发布评论

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

评论(4

眼眸里的那抹悲凉 2024-12-13 11:25:24

子字符串不需要通配符。

function press_getUrl(){
  return (strpos($_SERVER['REQUEST_URI'], "/search/node/") === 0);
}

但是,我认为这样的功能根本没有用处。你想得到什么?

如果它至少被调用

function press_check_url($check){
  return (strpos($_SERVER['REQUEST_URI'], $check) === 0);
}

然后被调用,

if (press_check_url("/search/node/"))...

这对我来说是有意义的,但我不确定这个函数的用途。

还有名字上的注释。你的函数不返回任何网址。所以,不要在其名称中使用“get”。
并且不要混合命名约定。

You don't need no wild characters for substring.

function press_getUrl(){
  return (strpos($_SERVER['REQUEST_URI'], "/search/node/") === 0);
}

However, I see no use for such a function at all. what you're trying to get?

It would make sense for me if it was at least

function press_check_url($check){
  return (strpos($_SERVER['REQUEST_URI'], $check) === 0);
}

and then called

if (press_check_url("/search/node/"))...

but I am not sure of the use of this function.

also a note on the name. your function return no urls. so, don't use "get" in it's name.
and don't mix naming conventions.

惜醉颜 2024-12-13 11:25:24

此代码检查字符串是否以 /search/node/ 开头:

if (strpos($current_url, "/search/node/") === 0){$valid = false;}

This code checks if string starts with /search/node/:

if (strpos($current_url, "/search/node/") === 0){$valid = false;}
悲歌长辞 2024-12-13 11:25:24

不,你不能。对于该示例,请使用 strpos() 或类似方法。

如果你想做更复杂的匹配(字符串中间的通配符等),你可以使用正则表达式。

No, you cannot. Use strpos() or similar for that example.

If you want to do more complex matching (wildcards in the middle of strings, et cetera), you can use regular expressions.

々眼睛长脚气 2024-12-13 11:25:24

你只需搜索 /search/node 的位置,如果position != 0,则此语句失败

if (0 === strpos($current_url, "/search/node/")) return false; else return true;

You just search for position of /search/node, if position != 0, this statements fails

if (0 === strpos($current_url, "/search/node/")) return false; else return true;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文