Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
クエリ付きURIの作成
[go: Go Back, main page]

クエリ付きURIの作成


 URIモジュールを使うと簡単です。
use strict;
use URI;

my $uri = URI->new('http://www.example.com/test.cgi');
$uri->query_form(
	foo => 'test parameter',
	hoge => 'ほげ',
);

print $uri, "\n";

関連項目

Webページの取得
URIエスケープ
リンク先を絶対パスで取得