一个perl URLencode URLdecode的方法 (2009-07-22 15:47:36)转载▼

#引入模块

use URI::Escape;
#urlencode

$encoded = uri_escape("10% is enough\n"); 

#urldecode

$decoded  = uri_unescape($encoded);

 

结束了,perl用起来就是如此简单


uri_escape( $string )

uri_escape( $string, $unsafe )

uri_escape_utf8( $string )

uri_escape_utf8( $string, $unsafe )

uri_unescape($string,...)


你可能感兴趣的:(一个perl URLencode URLdecode的方法 (2009-07-22 15:47:36)转载▼)