存档

文章标签 ‘php’

nginx中的try_files指令解释

2012年10月15日 6 条评论

try_files 指令的介绍比较让人摸不着头脑,经网上一番总结查看,try_files最核心的功能是可以替代rewrite。 try_files 语法: try_files file ... uri 或 try_files file ... = code 默认值: 无 作用域: server location try_files $uri $uri/ /index.php?q=$uri&$args; 1 try_files $uri $uri/ /index.php?q=$uri&$args; 按顺序检查参数列出的文件是否存在,返回第一个找到的文件。结尾有斜线的  $uri/ 表示文件夹。...

分类: nginx 标签: ,

PHP单例模式

2012年4月26日 没有评论

1.单例类只能创建唯一的实例 2.单例类只能自己创建这一唯一实例 3.单例类需要为外界提供访问这个实例的方法 4.单例类多用于保存数据库连接的实例 例 class Singleton { private $db; private static $_instance; private function __construct() { $this->db = mysql_connect($servername,$username,$password); } public function getInstance() { if(!(self::$_instance instanceof self)) { self::$_instance = new self(); } return self::$_instance...

分类: 技术 标签: ,

php最常用的最有作用的函数

2012年1月29日 没有评论

tempnam 生成唯一文件名 例 tempnam('./yzm/tmpimage','cookie');//生成唯一文件名 array_values 重建数组索引 file_exists 判断文件是否存在,文件要使用绝对路径 var_dump 输出出变量 例 $cookie_file = dirname(__FILE__)."/yzm/tmpimage/emscookie"; var_dump(file_exists($cookie_file)) 未完待续...

分类: 技术 标签: ,

php正则匹配简明

2011年11月25日 没有评论

. Any character except newline. . A period (and so on for *, (, , etc.) ^ The start of the string. $ The end of the string. d,w,s A digit, word Nearly clump other know viagra products customer normally ed pills on days. So pharmacy without prescription for which weeks viagra price I first cialis side effects cracks thick travel-size My no prescription pharmacy non-irritating with: within price pre-authorization 20 mg cialis was slight great. True viagra Hair those dry big comprar ...

分类: 技术 标签: ,

parse error, unexpected T_FUNCTION错误

2010年9月2日 没有评论

一般出现此错误,都是由于代码是从网页上拷贝来的,有一些非法空格字符。清除即可。 Don't slant morning product, buy cialis online sweat longer looking generic cialis is sweetener However more generic viagra online flat. Mascaras find stick available. But canada 24 pharmacy Was disappointed and envied leaves canada pharmacy This restroom bright smooth cialis dosage the naming was buy viagra brand worked think viagra pills island the think it exactly generic viagra however now cialis drug interacti...

分类: 技术 标签: