CakeFest 2024: The Official CakePHP Conference

oauth_urlencode

(PECL OAuth >=0.99.2)

oauth_urlencode将 URI 编码为 RFC 3986 规范

说明

oauth_urlencode(string $uri): string

将 URI 编码为 » RFC 3986 规范。

参数

uri

将要编码的 URI 。

返回值

返回一个 » RFC 3986 规范的编码字符串。

add a note

User Contributed Notes 1 note

up
-1
bohwaz
13 years ago
Note that php5.3 rawurlencode will do exactly the same thing.

For PHP 5.2, easy replacement to this function :

<?php

function rfc3986_encode($str)
{
$str = rawurlencode($str);
$str = str_replace('%E7', '~', $str);
return
$str;
}

?>
To Top