所以我认为拆分不再好或应该避免。
有没有办法删除最后一个&符号和链接的其余部分。
之前的链接: http ://www.websitehere.com/subdir?var=somevariable&someotherstuff&textiwanttoremove
链接后: http ://www.websitehere.com/subdir?var=somevariable&someotherstuff
现在我正在使用这个脚本:
<?php
$name = http_build_query($_GET);
// which you would then may want to strip away the first 'name='
$name = substr($name, strlen('name='));
//change link to a nice URL
$url = rawurldecode($name);
?>
<?php echo "$url"; ?>
它需要整个 URL(包括所有与符号)...问题是,链接来自的站点添加了一个返回值 &RETURNVALUEHERE,我需要删除最后一个“&”和它后面的其余文本。
谢谢!
罗布