1

如何使用preg_replace函数从字符串中删除% ?

这是我目前拥有的,但 % 符号阻止了 twitter 分享按钮的处理:

<div class="twitter">
<a href="http://twitter.com/share?text=Just%20Sorc\'d:%20%20'. preg_replace('/((?:http|https|ftp):\/\/(?:[A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+):?(\d+)?\/?[^\s\"\']+)/i','<a href="$1" rel="nofollow" target="blank">$1</a>',$post).'%20--%20via:%20%20http://www.sorcd.com/'.$session_user_id.'%20%20at%20%20" target="_blank" data-count="none"><img src="https://abs.twimg.com/a/1378977615/images/resources/twitter-bird-white-on-blue.png" width="16px" alt="Tweet"></a>
</div>
4

2 回答 2

1

首先,您的字符串/URL 具有 URI 编码值,例如 %20,这意味着它们是空格。删除 % 不会解决问题。

其次,这可能是how-to-remove-sign-in-php-string 的副本。

于 2013-09-18T02:23:23.897 回答
0

您可以使用 urldecode() 对其进行解码。'%20' 表示空格

于 2013-09-18T02:45:57.040 回答