«

PHP:rawurldecode()的用法

时间:2024-3-1 21:52     作者:韩俊     分类: PHP


rawurldecode

(PHP 4, PHP 5)

rawurldecode — 对已编码的 URL 字符串进行解码

说明

string rawurldecode
( string $str
)

返回字符串,此字符串中百分号(%)后跟两位十六进制数的序列都将被替换成原义字符。

参数

str

要解码的 URL。

返回值

返回解码后的 URL 字符串。

范例

Example #1 rawurldecode() 示例

<?php

echo rawurldecode('foo%20bar%40baz'); // foo bar@baz

?>

注释

Note:

rawurldecode() 不会把加号('+')解码为空格,而 urldecode() 可以。

参见

rawurlencode() - 按照 RFC 1738 对 URL 进行编码 urldecode() - 解码已编码的 URL 字符串 urlencode() - 编码 URL 字符串 » RFC 3986

标签: php php教程

热门推荐