我已经编写了这个程序来在嵌入式 perl 脚本中传递一个变量,但它给出了空白输出:-( 为什么它不起作用。请解决这个问题。
php脚本
<?php
$var1='high';
exec('C:/xampp/htdocs/WORK/hello.pl'.' '.EscapeShellArg("$var1"),$output);
echo ($output);
?>
perl 脚本
#!/usr/bin/perl -w
$var1=<>;
print $var1;