oauth_urlencode

(PECL OAuth >=0.99.2)

oauth_urlencodeEncode a URI to RFC 3986

Opis

oauth_urlencode ( string $uri ) : string

Encodes a URI to » RFC 3986.

Parametry

uri

URI to encode.

Zwracane wartości

Returns an » RFC 3986 encoded string.

add a note add a note

User Contributed Notes 1 note

up
0
bohwaz
14 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