这是我到目前为止的代码
地点:
<?php
if ($_POST['action']=="Shutdown") {
$test=shell_exec("touch /scripts/shutdown.sh");
}
?>
关机.sh:
#!/bin/sh
if [ -f "/tmp/shutdown" ]
then
rm -f /tmp/shutdown
/sbin/shutdown now
fi
我大致从http://ubuntuforums.org/得到了这个想法但是,当我在本地主机上运行 php 脚本时,它没有出现?
问题:如何使用 LAMP 服务器通过 php 站点关闭我的系统?
提前致谢!