使用.htaccess对目录进行访问权限控制

Categories: PHP; Tagged with: ; @ September 9th, 2010 22:03

需求: 简单的通过用户名与密码控制目录访问权限
具体步骤:  配置(或新建).htaccess文件, 并建立密码文件

1. 准备好密码文件

创建一个文件, 该文件内容:
liguoliang:lib.eFja4FoEU
密码需经过加密: 方便的在线加密工具: http://davidwalsh.name/web-development-tools

将文件保存, 名称可自定义, 如.htpasswd

亦可使用htpasswd工具创建密码文件.

2. 配置.htaccess文件

注意: 如果不存在该文件, 则需要创建. 内容大致如下:

AuthName InsprNewsLetter
AuthType Basic
AuthUserFile /var/www/html/newsletter/.htpasswd
Require valid-user

3. 将以上两个文件上传到文件目录, 重启httpd即可.

4. 排错:

1.  出现500错误, 密码文件路径错误, 检查.htaccess中的路径
2.  文件已上传, Apache已重启, 但仍旧无法保护目录, 检查httpd.conf中当前目录是否允许override

XAMPP下修改Apache的Timeout

Categories: PHP; Tagged with: ; @ September 9th, 2010 9:30

本以为是在httpd.conf中可直接修改TimeOut, 但未在该文件中发现该参数. 但有很多Include:

# Various default settings
Include conf/extra/httpd-default.conf

果然, 修改/extra/httpd-default.conf即可.

PHP中使用静态方法

Categories: PHP; Tagged with: ; @ September 8th, 2010 21:03

定义静态方法:

Class EmailUtils {
	/** 判断给定的字符是否为Email字符. */
	public static function isEmailChar($char) {
		return eregi("[a-zA-Z0-9\.\_\@]", $char);
	}

} //end of class 

类内部使用静态方法: self::isEmailChar($str);

类外部使用静态方法: EmailUtils ::isEmailChar($str);

PHP 使用stripcslashes消除POST中HTML代码被增加的反斜杠

Categories: PHP; Tagged with: ; @ September 8th, 2010 20:57

某天, 需要从Post一部分HTML代码到php中, 但发现收到数据后引号一类的字符都被增加了转义字符, 导致HTML无法正常显示.

解决方法: 使用$body = stripcslashes($_REQUEST[‘body’]);

另外, 亦可通过设置php.ini中magic_quotes_gpc为off解决(未验证).
参考: http://topic.csdn.net/u/20090519/12/ed7db18d-4cc2-4dad-8a4d-f7799d6deda1.html

PHP (首)字母大写操作

Categories: PHP; Tagged with: ; @ September 8th, 2010 20:44

所有字母大写/小写; 单词首字母大写; 第一个字母大写/小写:

$str = "This is liguoliang dot com";

echo "全部变小写 strtolower: ".strtolower($str);
echo "
第一个字母大写 ucfirst: ".ucfirst($str); echo "
单词首字母大写 ucwords: ".ucwords($str); echo "
全部变大写 strtoupper: ".strtoupper($str); // 5.3 以后, 支持lcfirst($str); //第一个字母小写

输出:

全部变小写 strtolower: this is liguoliang dot com

第一个字母大写 ucfirst: This is liguoliang dot com

单词首字母大写 ucwords: This Is Liguoliang Dot Com

全部变大写 strtoupper: THIS IS LIGUOLIANG DOT COM

参考:  http://php.net/manual/en/function.ucfirst.php

Newer Posts <-> Older Posts



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.