在 php 中对包含连字符 (-) 和 dot(.) 的 url 进行编码

2022-08-30 23:11:19

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

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

必须成为编码的URL,例如:

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

我需要对每个符号进行编码,即使是像上面这样的点(.)和连字符(-)。


答案 1

试试这个。在函数内部,如果您多次使用它,也许...

$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;

答案 2

这将对所有不是纯字母或数字的字符进行编码。您仍然可以使用标准 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;
}

推荐