linux中解析.htpasswd文件的PHP类
介绍一个
使用方法
$
代码如下 | 复制代码 |
passwdHandler = new Htpasswd('/home/myuser/.htpasswd'); // Add a user with name 'user1' and password 'I prefer to use passphrase rather than password.' if it doesn't exist in .htpasswd. $passwdHandler -> addUser('user1', 'I prefer to use passphrase rather than password.'); // Delete the user 'user1' if it exists in .htpasswd. $passwdHandler -> deleteUser('user1'); // Check if user 'user1' exists in .htpasswd. if ($passwdHandler -> doesUserExist('user1')) { // User 'user1' exists. } |
htpasswd类
代码如下 | 复制代码 |
class Htpasswd { |
上一篇: thinkPHP网站导航,菜单设计疑惑?
下一篇: 开启PHP Static 关键字之旅模式
推荐阅读
-
php中关于抽象(abstract)类和抽象方法的问题解析
-
ubuntu 装配xampp,将php.ini文件中的allow_call_time_pass_reference=On后,打开网页提示下载保存网页不解析PHP
-
解析php中的fopen()函数用打开文件模式说明
-
linux中解析.htpasswd文件的PHP类
-
java-刚从JAVA转到PHP,碰到引用其他文件中的类的问题。
-
PHP程序中的文件锁、互斥锁、读写锁使用技巧解析_PHP
-
PHP程序中的文件锁、互斥锁、读写锁使用技巧解析,
-
读取、把模板中的标签解析成PHP语法编译成PHP文件
-
excelreader: PHP-ExcelReader:用于解析excel文件的PHP类库
-
PHP中的一个很好用的文件上传类_PHP教程