用来解析.htgroup文件的PHP类

2015-01-24信息快讯网

用来解析.htgroup文件的PHP类代码,需要的朋友可以参考下

.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获取和操作配置文件php.ini的几个函数介绍
PHP 读取大文件的X行到Y行内容的实现代码
解析Ubuntu下crontab命令的用法
关于crontab的使用详解
php中让上传的文件大小在上传前就受限制的两种解决方法
解析crontab php自动运行的方法
解析关于java,php以及html的所有文件编码与乱码的处理方法汇总
使用PHP遍历文件目录与清除目录中文件的实现详解
php常用Output和ptions/Info函数集介绍
Android ProgressBar进度条和ProgressDialog进度框的展示DEMO
php class中public,private,protected的区别以及实例分析
基于PHP输出缓存(output_buffering)的深入理解
php缓冲 output_buffering的使用详解
详解PHP内置访问资源的超时时间 time_out file_get_contents read_file
php笔记之:php函数range() round()和list()的使用说明
用来解析.htpasswd文件的PHP类
PHP curl 并发最佳实践代码分享
php调用方法mssql_fetch_row、mssql_fetch_array、mssql_fetch_assoc和mssql_fetch_objcect读取数据的区别
php中判断文件空目录是否有读写权限的函数代码
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
单一index.php实现PHP任意层级文件夹遍历(Zjmainstay原创)
php读取txt文件组成SQL并插入数据库的代码(原创自Zjmainstay)
php生成静态文件的多种方法分享
PHP imagecreatefrombmp 从BMP文件或URL新建一图像
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
Notice: Trying to get property of non-object problem(PHP)解决办法
PHP中创建空文件的代码[file_put_contents vs touch]
url decode problem 解决方法
php数组函数序列 之array_count_values() 统计数组中所有值出现的次数函数
Array of country list in PHP with Zend Framework
PHP源代码数组统计count分析
使用GROUP BY的时候如何统计记录条数 COUNT(*) DISTINCT
©2014-2024 dbsqp.com