PHP -如何使用PHP脚本启动Google Chrome

mhd8tkvw  于 2023-10-14  发布在  Go
关注(0)|答案(1)|浏览(184)

下面是我的代码:

<?php
$output = exec('/bin/bash /var/www/html/test.sh');
echo "<pre>$output</pre>";
?>

以下是我在test.sh中的内容:

#!/bin/bash
export DISPLAY=:0
google-chrome
echo "Starting Chrome"

当我执行./test.sh时,google chrome启动,然后我在终端中看到文本Starting Chrome
但是,当我执行PHP脚本时,我只看到文本Starting Chrome。为什么google-chrome在apache 2调用test.sh时不启动?
我认为这是关于许可的问题。
有可能以某种方式实现这样的事情吗?

wdebmtf2

wdebmtf21#

使用此exec("google-chrome https://www.google.com");

相关问题