Perl 中的 URL 百分比编码(URI 转义)
谁能告诉我在哪里可以找到编码函数,例如
encode("[email protected]") ==>; ram%40yahoo.com
和解码("ram%40yahoo.com") ==> [电子邮件受保护]
谢谢
Can anyone tell me where I can find encoding functions like
encode("[email protected]") ==> ram%40yahoo.com
and decode("ram%40yahoo.com") ==> [email protected]
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
URI
中的 URI::Escape 模块发行版,几乎所有东西都使用它。Use the URI::Escape module from the
URI
distribution, which is used by pretty much everything.您可以在 URI::编码 包。
You can use the
uri_encode
anduri_decode
functions in the URI::Encode package.