Home  >  Article  >  Backend Development  >  PHP远道重启服务器代码

PHP远道重启服务器代码

WBOY
WBOYOriginal
2016-06-13 10:38:431050browse

PHP远程重启服务器代码

<?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);}}?>-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><htmlxmlns><metahttp-equiv content="”text/html;" charset="utf-8″"></metahttp-equiv><title>Manage Your Cumputer</title>
<p><ahref>Shutdown</ahref></p>
<p><ahref>Abort shutdown</ahref></p>
<p><ahref>Reboot</ahref></p></htmlxmlns>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn