用css alpha 濾鏡 實(shí)現(xiàn)input file 樣式美化代碼
656
2024-10-19
本文實(shí)例講述了PHP實(shí)現(xiàn)更改hosts文件的方法。分享給大家供大家參考,具體如下:
有這樣一個需求,我有多個網(wǎng)址希望在不同的時候?qū)?yīng)不同的 ip,如果一個個配 hosts,這工作顯得有些繁瑣。寫了如下腳本來批量更改。
<?php define('HOST_FILE', 'C:WindowsSystem32driversetchosts'); $hm = new HostManage(HOST_FILE); $env = $argv[1]; if (empty($env)) { $hm->delAllGroup(); } else { $hm->addGroup($env); } class HostManage { // hosts 文件路徑 protected $file; // hosts 記錄數(shù)組 protected $hosts = array(); // 配置文件路徑,默認(rèn)為 __FILE__ . '.ini'; protected $configFile; // 從 ini 配置文件讀取出來的配置數(shù)組 protected $config = array(); // 配置文件里面需要配置的域名 protected $domain = array(); // 配置文件獲取的 ip 數(shù)據(jù) 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,因?yàn)槭褂昧?parse_ini_file 這個函數(shù)來解析,如果后面不帶值,就獲取不到這條記錄了 b.example.com=1 c.example.com=1 # ip 記錄 [ip] local=127.0.0.1 dev=192.168.1.100
使用方法:
php hosts.php local # 域名將指向本機(jī) 127.0.0.1 php hosts.php dev # 域名將指向開發(fā)機(jī) 192.168.1.100 php hosts.php # 刪除域名的 hosts 配置
寫完后,發(fā)現(xiàn),這明明就是只需要一次查找替換就能完成的工作嘛
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php文件操作總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計有所幫助。
#免責(zé)聲明#
本站[綠夏技術(shù)導(dǎo)航]提供的一切軟件、教程和內(nèi)容信息僅限用于學(xué)習(xí)和研究目的;不得將上述內(nèi)容用于商業(yè)或者非法用途,否則,一切后果請用戶自負(fù)。本站信息來自網(wǎng)絡(luò)收集整理,版權(quán)爭議與本站無關(guān)。您必須在下載后的24個小時之內(nèi),從您的電腦或手機(jī)中徹底刪除上述內(nèi)容。如果您喜歡該程序或內(nèi)容,請支持正版,購買注冊,得到更好的正版服務(wù)。我們非常重視版權(quán)問題,如有侵權(quán)請郵件[admin@lxwl520.com]與我們聯(lián)系進(jìn)行刪除處理。敬請諒解!