0

我想知道 Perl 程序员如何将 GET/POST 值传递给 php 程序

Perl 程序(PerlVALUE) ---->>>> PHP(转换为 GET/POST ---->>>> http://www.example.com?name=PerlVALUE&lastname=PerlVALUE

有没有人知道怎么弄啊。。。谢谢。。。

4

1 回答 1

4

这是一种方法:

#!/usr/bin/perl
use strict;
use warnings;
use LWP::UserAgent;

my $agent = LWP::UserAgent->new();

$agent->post("http://www.example.com", {
    name => "PerlVALUE",
    lastname => "PerlVALUE"
});
于 2012-04-27T11:20:20.147 回答