oauth_urlencode

(PECL OAuth >=0.99.2)

oauth_urlencodeEncode a URI to RFC 3986

Description

string oauth_urlencode ( string $uri )

Encodes a URI to » RFC 3986.

Parameters

uri

URI to encode.

Return Values

Returns an » RFC 3986 encoded string.

Коментарии

Автор:
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;
}

?>
2010-03-30 10:20:09
http://php5.kiev.ua/manual/ru/function.oauth-urlencode.html

    Поддержать сайт на родительском проекте КГБ