中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

使用PHP怎么對.htgroup文件進行解析

發布時間:2020-12-28 16:31:08 來源:億速云 閱讀:160 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用PHP怎么對.htgroup文件進行解析,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

 .htgroup 文件示例:
admin: user2
editor: user1 user3
writer: user3

復制代碼 代碼如下:


class Htgroup {
private $file = '';
private function write($groups = array()) {
$str = '';
foreach ($groups as $group => $users) {
$users_str = '';
foreach ($users as $user) {
if (!empty($users_str)) {
$users_str .= ' ';
}
$users_str .= $user;
}
$str .= "$group: $users_str\n";
}
file_put_contents($this -> file, $str);
}
private function read() {
$groups = array();
$groups_str = file($this -> file, FILE_IGNORE_NEW_LINES);
foreach ($groups_str as $group_str) {
if (!empty($group_str)) {
$group_str_array = explode(': ', $group_str);
if (count($group_str_array) == 2) {
$users_array = explode(' ', $group_str_array[1]);
$groups[$group_str_array[0]] = $users_array;
}
}
}
return $groups;
}
public function __construct($file) {
if (file_exists($file)) {
$this -> file = $file;
} else {
die($file." doesn't exist.");
return false;
}
}
public function addUserToGroup($username = '', $group = '') {
if (!empty($username) && !empty($group)) {
$all = $this -> read();
if (isset($all[$group])) {
if (!in_array($username, $all[$group])) {
$all[$group][] = $username;
}
} else {
$all[$group][] = $username;
}
$this -> write($all);
} else {
return false;
}
}
public function deleteUserFromGroup($username = '', $group = '') {
$all = $this -> read();
if (array_key_exists($group, $all)) {
$user_index = array_search($username, $all[$group]);
if ($user_index !== false) {
unset($all[$group][$user_index]);
if (count($all[$group]) == 0) {
unset($all[$group]);
}
$this -> write($all);
}
} else {
return false;
}
}
}

復制代碼 代碼如下:


$groupHandler = new Htgroup('/home/myuser/.htgroup');
// Add user 'user1' to group 'admin' in .htgroup. Group will be automatically created if it doesn't exist.
$groupHandler -> addUserToGroup('user1', 'admin');
// Delete user 'user1' from group 'admin' in .htgroup. Group will be automatically removed if it doesn't contain any users.
$groupHandler -> deleteUserFromGroup('user1', 'admin');

關于使用PHP怎么對.htgroup文件進行解析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

若尔盖县| 无为县| 汶上县| 翁牛特旗| 弥渡县| 美姑县| 长白| 板桥市| 乌兰察布市| 鄂温| 阜平县| 庆阳市| 竹北市| 虞城县| 临汾市| 喜德县| 太和县| 乌鲁木齐市| 南皮县| 成安县| 竹山县| 和硕县| 安阳县| 延庆县| 临清市| 吉木乃县| 周宁县| 蓬安县| 宁晋县| 黑龙江省| 新郑市| 孝感市| 山阴县| 屏东县| 深州市| 云林县| 罗定市| 金门县| 肃宁县| 双桥区| 勃利县|