我正在尝试使用php shell_excel函数执行perl脚本。但是当我执行php脚本时,它要求打开perl文件而不是打印输出。
我试过下面
#!/usr/local/bin/perl
$count = 0;
while (<stdin>) {
@w = split;
$count++;
for ($i=0; $i<=$#w; $i++) {
$s[$i] += $w[$i];
}
}
for ($i=0; $i<=$#w; $i++) {
print $s[$i]/$count, "\t";
}
print "\n";
print "hi";
app.pl包含以下脚本
{{1}}
任何建议?