PHP 中的 URL 编码
URL 可能具有路径和查询参数,例如某人的全名、另一个重定向 URL 或密码。它们可以包含 ASCII 集之外的特殊字符,如空格或 $ & : /
等字符。
因此,在通过 Internet 传输之前,应将 URL 重新生成为合法的 ASCII 格式;否则,它们会干扰 HTTP 协议。
在今天的帖子中,我们将学习如何在 PHP 中编码 URL。
PHP 提供了 2 个函数来对 URL 进行编码。
在 PHP 中使用 urlencode()
对 URL 进行编码
它是 PHP 提供的内置函数,用于对 URL 进行编码。此函数用%
后跟 2 个十六进制数字替换不安全的 ASCII 字符。该函数根据 application/x-www-form-urlencoded
进行编码。URL 不能包含空格,因此此函数将用加号 +
替换空格。特殊字符根据一些预定义的规则以极其特殊的格式重新生成。
urlencode()
的语法
urlencode(string $input);
参数
$input
:这是一个强制参数,它只需要执行编码的字符串输入 URL。
返回值
它返回一个字符串,其中包含除 -_.
之外的所有非字母数字字符,这些字符由%
符号替换,后跟 2 个十六进制数字。
示例代码:
<?php
echo urlencode("https://www.google.co.in/") . "\n";
echo urlencode("https://www.google.com/") . "\n";
?>
输出:
https%3A%2F%2Fwww.google.co.in%2F
https%3A%2F%2Fwww.google.com%2F
在 PHP 中使用 rawurlencode()
对 URL 进行编码
它是 PHP 提供的内置函数,可以根据 RFC 3986 对给定的 URL(统一资源定位器)字符串进行编码。它根据普通的 Percent-Encoding 进行编码。它用于防止文字字符被解释为特殊的 URL 分隔符,并防止 URL 被带有字符转换的传输媒体(如某些电子邮件系统)破坏。
符号或空格字符将替换为后跟 2 个十六进制数字的百分号 (%)。
rawurlencode()
的语法
rawurlencode(string $input);
参数
$input
:它是一个强制参数,它只接受进行编码的字符串输入 URL。
返回值
它返回一个编码字符串,其中包含除 -_.~
符号之外的所有非字母数字字符。
示例代码:
<?php
echo '<a href="http://testdomain.com/', rawurlencode('subscribers and admins/India'), '">';
?>
输出:
<a href="http://testdomain.com/subscribers%20and%20admins%2FIndia">
urlencode()
和 rawurlencode()
函数之间的唯一区别在于,首先将空格编码为 +
,然后将其编码为 %20
。此外,~
是在 urlencode()
中编码的,但不是在 rawurlencode()
中。如果要对查询组件进行编码,请使用 urlencode()
,如果要对路径段进行编码,请使用 rawurlencode()
。
Shraddha is a JavaScript nerd that utilises it for everything from experimenting to assisting individuals and businesses with day-to-day operations and business growth. She is a writer, chef, and computer programmer. As a senior MEAN/MERN stack developer and project manager with more than 4 years of experience in this sector, she now handles multiple projects. She has been producing technical writing for at least a year and a half. She enjoys coming up with fresh, innovative ideas.
LinkedIn