<?phpif(isset($_GET['action'])){$action = $_GET['action'];$cmd = ”;switch($action){case ‘shutdown’:$cmd = ‘shutdown -s’;break;case ‘abort-shutdown’:$cmd = ‘shutdown -a’;break;case ‘reboot’:$cmd = ‘shutdown -r’;break;default:// do nothingbreak;}if($cmd != ”){system($cmd);}}?><!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><htmlxmlns=”http://www.w3.org/1999/xhtml”><head><metahttp-equiv=”Content-Type” content=”text/html; charset=utf-8″ /><title>Manage Your Cumputer</title></head><body><p><ahref=”?action=shutdown“>Shutdown</a></p><p><ahref=”?action=abort-shutdown“>Abort shutdown</a></p><p><ahref=”?action=reboot“>Reboot</a></p></body></html>?
详细解决方案
PHP远道重启服务器代码
热度:29 发布时间:2016-04-29 00:14:53.0
相关解决方案