PHP:删除“WWW”来自字符串内的 URL
目前我正在使用 parse_url,但是数组的主机项还包含我不想要的“WWW”部分。我该如何删除这个?
$parse = parse_url($url);
print_r($parse);
$url = $parse['host'] . $parse['path'];
echo $url;
Currently I am using parse_url, however the host item of the array also includes the 'WWW' part which I do not want. How would I go about removing this?
$parse = parse_url($url);
print_r($parse);
$url = $parse['host'] . $parse['path'];
echo $url;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这不会删除
www.com
中的www
,但www.www.com
会生成www.com
>。This won't remove the
www
inwww.com
, butwww.www.com
results inwww.com
.如果不需要协议前缀,请将第二个参数留空
if you don't need a protocol prefix, leave the second parameter empty