ですから、分割はもう良くないか、避けるべきだと思います。
最後のアンパサンドと残りのリンクを削除する方法はありますか?
前のリンク: 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を追加することです。最後の「&」と、その後の残りのテキストを削除する必要があります。
ありがとう!
ロブ