Can anyone tell me where I can find encoding functions like
encode("ram@yahoo.com") ==> ram%40yahoo.com
and 开发者_C百科decode("ram%40yahoo.com") ==> ram@yahoo.com
Thanks
Use the URI::Escape module from the URI
distribution, which is used by pretty much everything.
You can use the uri_encode
and uri_decode
functions in the URI::Encode package.
精彩评论