gpt4 book ai didi

php - 将 Bash 与 PHP 集成

转载 作者:太空宇宙 更新时间:2023-11-04 09:53:06 26 4
gpt4 key购买 nike

是否可以将两者结合起来?

我在网上找到了这个例子,但它输出的是一个空白页。 bash 本身正在运行并输出 Hello World!

bash 与 0777 chmod echo .txt

  #!/bin/bash
echo "Hello World!"

PHP

<?php
$result=shell_exec("echo.txt");
echo($result);
?>

最佳答案

指定 echo.txt 的路径,相对于 PHP 脚本或绝对路径,并确保脚本可执行。

$ chmod +x echo.txt

<?php
$result=shell_exec("./echo.txt");
echo($result);
?>

没有指定相对路径,从命令行运行 PHP,输出是

sh: echo.txt: command not found

它将在指定的路径下正常工作。

关于php - 将 Bash 与 PHP 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8771838/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com