gpt4 book ai didi

perl - 在Perl中,如何在命令行上发送CGI参数?

转载 作者:行者123 更新时间:2023-12-04 13:34:24 24 4
gpt4 key购买 nike

通常,我从网页获取数据,但我想从命令行发送以方便调试。

为了获取数据,我要做类似的事情:

my $query = new CGI;
my $username = $query->param("the_username");

这似乎不起作用:

$ ./script.pl the_username = user1

编辑:

其实上面的作品。检查 if$username语句错误(使用 ==而不是 eq)。

最佳答案

正如我很久以前发现的那样,您确实可以使用CGI.pm将查询字符串参数传递给脚本。我不建议将其作为首选的调试方法(最好将可复制的内容保存在文件中,然后再定向到脚本的STDIN),但是,它的确起作用:

#!/usr/bin/env perl

use warnings; use strict;

use CGI;

my $cgi = CGI->new;

my $param_name = 'the_username';

printf(
"The value of '%s' is '%s'.\n",
$param_name, $cgi->param($param_name)
);

输出:

$ ./t.pl the_username = yadayada
“the_username”的值为“yadayada”。

关于perl - 在Perl中,如何在命令行上发送CGI参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7403184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com