91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用PHP怎么對hosts文件進行更改

發布時間:2021-01-28 11:39:40 來源:億速云 閱讀:144 作者:Leah 欄目:開發技術

使用PHP怎么對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 配置

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安乡县| 邻水| 慈溪市| 柞水县| 黄陵县| 新建县| 大埔区| 凤冈县| 双鸭山市| 盐亭县| 庆元县| 庆阳市| 珲春市| 察隅县| 霍林郭勒市| 麻城市| 恩施市| 百色市| 青神县| 平南县| 九寨沟县| 林芝县| 保山市| 苍山县| 东至县| 新建县| 佛坪县| 汉沽区| 裕民县| 邹平县| 滦南县| 曲沃县| 若尔盖县| 讷河市| 临武县| 鄂托克旗| 阿图什市| 登封市| 乃东县| 辽阳县| 富宁县|