使用PHP执行bash脚本,并输入命令


Executing bash script with PHP, and input commands

我正在尝试使用PHP执行bash脚本,但问题是脚本需要在执行过程中输入一些命令和信息。

这是我使用的

$old_path = getcwd();
chdir('/my/path/');
$output = shell_exec('./script.sh');
chdir($old_path);

脚本执行正常,但我无法在脚本上输入任何选项

shell_exec()和exec()不能运行交互式脚本。为此,你需要一个真正的外壳。下面是一个为您提供一个真正的Bash Shell的项目:https://github.com/merlinthemagic/MTS

//if the script requires root access, change the second argument to "true".
$shell    = 'MTS'Factories::getDevices()->getLocalHost()->getShell('bash', false);
//What string do you expect to show in the terminal just before the first input? Lets say your script simply deletes a file (/tmp/aFile.txt) using "rm". In that case the example would look like this: 
//this command will trigger your script and return once the shell displays "rm: remove regular file"
$shell->exeCmd("/my/path/script.sh", "rm: remove regular file");
//to delete we have to press "y", because the delete command returns to the shell prompt after pressing "y", there is no need for a delimiter.  
$shell->exeCmd("y");
//done

我确信脚本的返回要复杂得多,但是上面的示例为您提供了如何与shell交互的模型。

我还要提到,您可以考虑不使用bash脚本来执行一系列事件,而是使用exeCmd()方法一个接一个地发出命令。通过这种方式,您可以处理返回并将所有错误逻辑保存在PHP中,而不是将其拆分为PHP和BASH。

阅读文档,它会帮助你。

proc_open()不需要任何外部库就可以实现:

$process = proc_open(
    'bash foo.sh',
    array( STDIN, STDOUT, STDERR ),
    $pipes,
    '/absolute/path/to/script/folder/'
);
if ( is_resource( $process ) ) {
    fclose( $pipes[0] );
    fclose( $pipes[1] );
    fclose( $pipes[2] );
    proc_close( $process );
}