這篇文章主要介紹了php實作用手機關閉電腦的方法,涉及php使用system方法呼叫系統指令的相關技巧,需要的朋友可以參考下
本文實例講述了php實作用手機關閉電腦的方法。具體分析如下:
適合有手機和電腦,用wifi的php web開發。方便關閉你的電腦(尤其在你想睡覺時),適合區域網路
用法:放在你的web專案資料夾,可以新建立個目錄
對了,把你的apache的httpd 或iis 加入防火牆例外,檔案是php字尾哦
<!DOCTYPE html> <html lang="zh-CN"> <head> <title>computer-manager</title> </head> <body> <p> <?php if($_POST){ $shutdown = array( 'shutdown' =>'shutdown -s -t 0', 'restart' => 'shutdown -r', 'logout' => 'shutdown -l', ); $cmdk = $_POST['cmd']; echo $cmd = $shutdown[$cmdk]; system($cmd); // 执行操作 } ?> </p> <form action="#top" method="post"> <p>choose you want.</p> <select name="cmd"> <option value="shutdown" selected="selected"> shutdown/ go to sleep. </option> <option value="restart"> restart computer/ ok, if no password. </option> <option value="logout"> logout/ you don't want this. </option> </select> <input type="submit" name="submit" value="submit" /> </form> </body> </html>
總結:以上就是本篇文的全部內容,希望對大家的學習有所幫助。
相關推薦:
######################## #
以上是php用手機關掉電腦的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!