在php中编码包含连字符( - )和点(。)的URL

时间:2012-08-23 13:44:27

标签: php urlencode encode

我需要在其中一个API中处理编码的URL,但它需要完整的编码URL。例如,来自:

的URL
http://test.site-raj.co/999999?lpp=1&px2=IjN

必须成为编码网址,例如:

http%3a%2f%test%site%2draj%2eco%2f999999%3flpp%3d1%26px2%3dIjN

我需要对每个符号进行编码,甚至像上面的点(。)和连字符( - )一样。

3 个答案:

答案 0 :(得分:20)

试试这个。在函数内部,如果你不止一次使用它......

$str = 'http://test.site.co/999999?lpp=1&p---x2=IjN';
$str = urlencode($str);
$str = str_replace('.', '%2E', $str);
$str = str_replace('-', '%2D', $str);
echo $str;

答案 1 :(得分:9)

这将编码非普通字母或数字的所有字符。您仍然可以使用标准urldecode或rawurldecode解码:

function urlencodeall($x) {
    $out = '';
    for ($i = 0; isset($x[$i]); $i++) {
        $c = $x[$i];
        if (!ctype_alnum($c)) $c = '%' . sprintf('%02X', ord($c));
        $out .= $c;
    }
    return $out;
}

答案 2 :(得分:-4)

为什么不使用rawurlencode

例如rawurlencode("http://test.site-raj.co/999999?lpp=1&px2=IjN")