Home  >  Article  >  php教程  >  php实现用手机关闭计算机(电脑)的方法,php用手机

php实现用手机关闭计算机(电脑)的方法,php用手机

WBOY
WBOYOriginal
2016-06-13 09:06:141093browse

php实现用手机关闭计算机(电脑)的方法,php用手机

本文实例讲述了php实现用手机关闭计算机(电脑)的方法。分享给大家供大家参考。具体分析如下:

适合有手机和电脑,用wifi的php web开发。方便关闭你的电脑(尤其在你想睡觉时 ),适合局域网

用法:放在你的web项目文件夹,可以新建立个目录

对了,把你的apache的httpd 或 iis 加入防火墙例外 ,文件是php后缀哦

<!DOCTYPE html>
<html lang="zh-CN">
<head>
 <title>computer-manager</title>
</head>
<body>
 <p>
 <&#63;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); // 执行操作
 }
 &#63;>
 </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程序设计有所帮助。

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