PHP实现更改hosts文件的方法示例


Posted in PHP onAugust 08, 2017

本文实例讲述了PHP实现更改hosts文件的方法。分享给大家供大家参考,具体如下:

有这样一个需求,我有多个网址希望在不同的时候对应不同的 ip,如果一个个配 hosts,这工作显得有些繁琐。写了如下脚本来批量更改。

<?php
define('HOST_FILE', 'C:\Windows\System32\drivers\etc\hosts');
$hm = new HostManage(HOST_FILE);
$env = $argv[1];
if (empty($env)) {
    $hm->delAllGroup();
} else {
    $hm->addGroup($env);
}
class HostManage {
    // hosts 文件路径
    protected $file;
    // hosts 记录数组
    protected $hosts = array();
    // 配置文件路径,默认为 __FILE__ . '.ini';
    protected $configFile;
    // 从 ini 配置文件读取出来的配置数组
    protected $config = array();
    // 配置文件里面需要配置的域名
    protected $domain = array();
    // 配置文件获取的 ip 数据
    protected $ip = array();
    public function __construct($file, $config_file = null) {
        $this->file = $file;
        if ($config_file) {
          $this->configFile = $config_file;
        } else {
          $this->configFile = __FILE__ . '.ini';
        }
        $this->initHosts()
            ->initCfg();
    }
    public function __destruct() {
        $this->write();
    }
    public function initHosts() {
        $lines = file($this->file);
        foreach ($lines as $line) {
            $line = trim($line);
            if (empty($line) || $line[0] == '#') {
                continue;
            }
            $item = preg_split('/\s+/', $line);
            $this->hosts[$item[1]] = $item[0];
        }
        return $this;
    }
    public function initCfg() {
        if (! file_exists($this->configFile)) {
            $this->config = array();
        } else {
            $this->config = (parse_ini_file($this->configFile, true));
        }
        $this->domain = array_keys($this->config['domain']);
        $this->ip = $this->config['ip'];
        return $this;
    }
    /**
     * 删除配置文件里域的 hosts
     */
    public function delAllGroup() {
        foreach ($this->domain as $domain) {
            $this->delRecord($domain);
        }
    }
    /**
     * 将域配置为指定 ip
     * @param type $env
     * @return \HostManage
     */
    public function addGroup($env) {
        if (! isset($this->ip[$env])) {
            return $this;
        }
        foreach ($this->domain as $domain) {
            $this->addRecord($domain, $this->ip[$env]);
        }
        return $this;
    }
    /**
     * 添加一条 host 记录
     * @param type $ip
     * @param type $domain
     */
    function addRecord($domain, $ip) {
        $this->hosts[$domain] = $ip;
        return $this;
    }
    /**
     * 删除一条 host 记录
     * @param type $domain
     */
    function delRecord($domain) {
        unset($this->hosts[$domain]);
        return $this;
    }
    /**
     * 写入 host 文件
     */
    public function write() {
        $str = '';
        foreach ($this->hosts as $domain => $ip) {
            $str .= $ip . "\t" . $domain . PHP_EOL;
        }
        file_put_contents($this->file, $str);
        return $this;
    }
}

示例配置文件如下:

# 域名
[domain]
a.example.com=1 # 请无视这个 =1,因为使用了 parse_ini_file 这个函数来解析,如果后面不带值,就获取不到这条记录了
b.example.com=1
c.example.com=1
# ip 记录
[ip]
local=127.0.0.1
dev=192.168.1.100

使用方法:

php hosts.php local # 域名将指向本机 127.0.0.1
php hosts.php dev # 域名将指向开发机 192.168.1.100
php hosts.php # 删除域名的 hosts 配置

写完后,发现,这明明就是只需要一次查找替换就能完成的工作嘛

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
人大复印资料处理程序_输入篇
Oct 09 PHP
给apache2.2加上mod_encoding模块後 php5.2.0 处理url出现bug
Apr 12 PHP
Discuz板块横排显示图片的实现方法
May 28 PHP
PHPMailer安装方法及简单实例
Nov 25 PHP
一个PHP数组应该有多大的分析
Jul 30 PHP
小文件php+SQLite存储方案
Sep 04 PHP
php通过COM类调用组件的实现代码
Jan 11 PHP
解析PHP的session过期设置
Jun 29 PHP
php操作XML、读取数据和写入数据的实现代码
Aug 15 PHP
php中filter_input函数用法分析
Nov 15 PHP
php 比较获取两个数组相同和不同元素的例子(交集和差集)
Oct 18 PHP
Yii框架where查询用法实例分析
Oct 22 PHP
PHP编程实现阳历转换为阴历的方法实例
Aug 08 #PHP
PHP数据分析引擎计算余弦相似度算法示例
Aug 08 #PHP
Eclipse PHPEclipse 配置的具体步骤
Aug 08 #PHP
PHP 文件锁与进程锁的使用示例
Aug 07 #PHP
PHP实现找出有序数组中绝对值最小的数算法分析
Aug 07 #PHP
php基于session锁防止阻塞请求的方法分析
Aug 07 #PHP
在Yii2特定页面如何禁用调试工具栏Debug Toolbar详解
Aug 07 #PHP
You might like
php解决约瑟夫环示例
2014/04/09 PHP
php 自定义错误日志实例详解
2016/11/12 PHP
laravel 5异常错误:FatalErrorException in Handler.php line 38的解决
2017/10/12 PHP
JS删除字符串中重复字符方法
2014/03/09 Javascript
javascript模拟C#格式化字符串
2015/08/26 Javascript
Javascript实现图片轮播效果(一)让图片跳动起来
2016/02/17 Javascript
js控制台输出的方法(详解)
2016/11/26 Javascript
Vue.js组件通信的几种姿势
2017/10/23 Javascript
使用Vue开发动态刷新Echarts组件的教程详解
2018/03/22 Javascript
javascript设计模式 ? 迭代器模式原理与用法实例分析
2020/04/17 Javascript
在Vue中使用Viser说明(基于AntV-G2可视化引擎)
2020/10/28 Javascript
Python3 能振兴 Python的原因分析
2014/11/28 Python
书单|人生苦短,你还不用python!
2017/12/29 Python
微信小程序跳一跳游戏 python脚本跳一跳刷高分技巧
2018/01/04 Python
python中for循环输出列表索引与对应的值方法
2018/11/07 Python
在交互式环境中执行Python程序过程详解
2019/07/12 Python
Django使用unittest模块进行单元测试过程解析
2019/08/02 Python
python二分法查找算法实现方法【递归与非递归】
2019/12/06 Python
PyTorch实现ResNet50、ResNet101和ResNet152示例
2020/01/14 Python
Python处理PDF与CDF实例
2020/02/26 Python
python实现简单井字棋小游戏
2020/03/05 Python
Anaconda+VSCode配置tensorflow开发环境的教程详解
2020/03/30 Python
python如何绘制疫情图
2020/09/16 Python
python实现MySQL指定表增量同步数据到clickhouse的脚本
2021/02/26 Python
Html5 实现微信分享及自定义内容的流程
2019/08/20 HTML / CSS
美国最大的在线寄售和旧货店:Swap.com
2018/08/27 全球购物
Spartoo美国:欧洲排名第一的在线时装零售商
2019/12/12 全球购物
泰国Robinson百货官网:购买知名品牌的商品
2020/02/08 全球购物
调解员先进事迹材料
2014/02/07 职场文书
协议书格式
2014/04/23 职场文书
运动会广播稿200米(5篇)
2014/10/15 职场文书
2015年党员创先争优公开承诺书
2015/04/27 职场文书
篮球赛闭幕式主持词
2015/07/03 职场文书
小学语文继续教育研修日志
2015/11/13 职场文书
导游词书写之黄山
2019/08/06 职场文书
js不常见操作运算符总结
2021/11/20 Javascript