我正在服务器上的php文件中尝试使用linux命令进行正常运行时间,如下所示
<p> The uptime for this system is <?php $up_time=shell_exec('uptime');
echo $uptime; ?</p>
但是当我打开我的网页时,它只显示:
The uptime for this system is
PHP似乎没有运行该命令。 如果我进入命令提示符并运行正常运行时间,我会看到结果。
我在Linux网络服务器上做ssh。 php文件驻留在服务器上的我的文件夹中。
答案 0 :(得分:0)
我认为以下代码可以使用。
The uptime for this system is <?php passthru('/usr/bin/uptime'); ?>
在php中执行系统命令,我建议你总是提供命令的完整路径。