5

我正在尝试在 PHP 中运行 bash 脚本,但无法运行它。php -v

PHP 5.3.10-1ubuntu3.2 with Suhosin-Patch (cli) (built: Jun 13 2012 17:19:58)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies

Ubuntu 12.04 LTS 64 位。

我的PHP代码:

    $cmd='/www/var/pl/bash.sh';
    $retval =-1;
    exec( $cmd, $output ); //executing the exec function.
    foreach( $output as $tmp ) 
    { 
        echo "$tmp <br>"; 
    };

bash.sh:

 #!/bin/bash
swipl --quiet -s /var/www/pl/ples.pl -g "f(R, gel), writeln(R),open('/var/www/pl/in.txt',write, Stream),
write(Stream, (R)),
nl(Stream),
close(Stream)" -t halt.

我究竟做错了什么?

我可以在 Linux 终端中运行 bash.sh。

4

2 回答 2

5

当您在终端中运行脚本时,您是在您登录的帐户下执行它。您有一个带有搜索路径等的 shell 设置。

当 php 执行脚本时,它没有 shell 设置,而是在 webserver 用户帐户下运行。执行时:

  • 确保你有完整的文件路径 swipl,这还不够,应该是/path/to/swipl
  • 确保网络服务器进程有足够的访问权限来获取它需要的一切。
于 2012-09-22T10:53:09.747 回答
0

很可能是路径或权限问题;例如,运行 Web 应用程序的用户不知道swipl程序在哪里。

在 'ing之前将 2>&1 添加到命令行exec,以便它告诉您问题所在。或者,您可以在 Web 服务器错误日志(或 PHP 错误日志;检查其路径和 php.ini 中的设置)中找到 stderr 输出。

于 2012-09-22T10:51:05.273 回答