略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: oauth_urlencode

2024-05-03

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 noteadd a note

User Contributed Notes 1 note

up
0
bohwaz
12 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;
}

?>

官方地址:https://www.php.net/manual/en/function.oauth-urlencode.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3