rawurldecode
(PHP 4, PHP 5, PHP 7)
rawurldecode — 对已编码的 URL 字符串进行解码
说明
rawurldecode
( string
$str
) : string返回字符串,此字符串中百分号(%)后跟两位十六进制数的序列都将被替换成原义字符。
参数
-
str
-
要解码的 URL。
返回值
返回解码后的 URL 字符串。
范例
Example #1 rawurldecode() 示例
<?php
echo rawurldecode('foo%20bar%40baz'); // foo bar@baz
?>
注释
Note:
rawurldecode() 不会把加号('+')解码为空格,而 urldecode() 可以。
参见
- rawurlencode() - 按照 RFC 3986 对 URL 进行编码
- urldecode() - 解码已编码的 URL 字符串
- urlencode() - 编码 URL 字符串
- » RFC 3986