尝试将变量从 PHP 文件传递到 Perl 文件
我正在尝试通过以下代码将变量从 PHP 文件传递到 Perl 文件
在 php 文件中:
exec("perl delete_all.pl $used");
在 perl 文件中我正在尝试: filename.pl
print $used;
但它不起作用。
I'm trying to pass variable from PHP file to Perl file by this code
In php file:
exec("perl delete_all.pl $used");
And in perl file I am trying: filename.pl
print $used;
But it's not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Perl 没有看到
$used
,而是看到$used
的值:从 Perl 中的参数列表中获取它:
Perl isn't seeing
$used
, but the value of$used
:Get it from the argument list in Perl: