gpt4 book ai didi

php - 从 URL 中删除 anchor (#hash)

转载 作者:可可西里 更新时间:2023-10-31 23:03:31 25 4
gpt4 key购买 nike

在 PHP 中是否有任何可靠的方法来清理 anchor 标记的 URL?

所以输入:

http://site.com/some/#anchor

输出:

http://site.com/some/

最佳答案

使用 strstr()

$url = strstr($url, '#', true);

使用 strtok()

更短的方式,使用strtok :

$url = strtok($url, "#");

使用爆炸()

将 url 与哈希分开的替代方法:

list ($url, $hash) = explode('#', $url, 2);

如果你根本不需要$hash,你可以在list中省略它:

list ($url) = explode('#', $url);

使用 PHP 版本 >= 5.4,您甚至不需要使用 list:

$url = explode('#', $url)[0];

使用 preg_replace()

强制性正则表达式解决方案:

$url = preg_replace('/#.*/', '', $url);

使用 Purl

Purl是简洁的 URL 操作库:

$url = \Purl\Url::parse($url)->set('fragment', '')->getUrl();

关于php - 从 URL 中删除 anchor (#hash),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16773111/

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