gpt4 book ai didi

php - HTML 不显示字符

转载 作者:搜寻专家 更新时间:2023-10-31 21:27:05 30 4
gpt4 key购买 nike

我在 Debian 8.2 上运行 lighttpd 1.4.35。我有一个非常简单的带有 php 代码 (php5) 的 html 文件,它调用 bash 脚本并打印输出:

<html>
<body>
<?php
$res = shell_exec("/var/www/html/run.sh");
echo $res . " is the result";
?>
</body>
</html>

如果在 firefox 上调用那个 html 文件,输出是

 is the result

如果我直接用那个文件运行 php (php index.php),输出是

<html>
<body>
13.00
is the result</body>
</html>

那么,结果在哪里丢失了?


编辑:来自firefox的网页源码是

<html>
<body>

is the result</body>
</html>

编辑:已解决。 bash 脚本使用“~”,当脚本从网络服务器运行时,它会扩展到错误的目录。

最佳答案

exec 函数“仅”返回 stdout 的内容,这就是为什么您可能会错过错误消息的原因。 但是你可以redirect stderr到标准输出,例如通过

$res = shell_exec("/var/www/html/run.sh 2>&1");

关于php - HTML 不显示字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34451977/

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