rawurlencode
(PHP 4, PHP 5)
rawurlencode — URL-encode according to RFC 1738
Beschrijving
string rawurlencode
( string $str
)
Geeft een string terug waarin alle niet alfanumerieke tekens behalve
-_.
Example#1 rawurlencode() voorbeeld 1
echo '<a href="ftp://user:', rawurlencode ('foo @+%/'),
'@ftp.my.com/x.txt">';
Example#2 rawurlencode() example 2
echo '<a href="https://x.com/department_list_script/',
rawurlencode ('sales and marketing/Miami'), '">';
Zie ook: rawurldecode(), urldecode(), urlencode() en » RFC 1738.