11 2013 档案

PHP之PhpDocument的使用
摘要:参考资料: 1、http://manual.phpdoc.org/HTMLSmartyConverter/HandS/ric_INSTALL.html 2、http://blog.csdn.net/shimizu/article/details/66980 3、http://www.laruence.com/2009/04/21/680.html一、安装PhpDocumentorpear install PhpDocumentor二、使用phpdoc -d “C:/Program Files/EasyPHP5/php/PEAR/PHPUnit2” -t “C:/Program File... 阅读全文

posted @ 2013-11-28 17:24 “清风轩” 阅读(563) 评论(0) 推荐(0)

MySQL使用技巧收集,持续更新中......
摘要:1、查询时按某一内容为中文的字段,以拼音字母排序:SELECT * FROM game ORDER BY CONVERT(name USING GBK); 阅读全文

posted @ 2013-11-27 14:36 “清风轩” 阅读(138) 评论(0) 推荐(0)

Lamp(Ubuntu 12.04 LTS) 之 htaccess的使用
摘要:环境说明:Ubuntu 12.04 LTS Lamp (以apt方式分别安装)一、明确目标:要确保.htaccess文件起作用,只需要三个重要点: 1、开启apache rewrite模块; (1)Ubuntu 12.04 开启 apache 新模块的方法可以通过以下命令实现: sudo a2enmod rewrite // 这个命令的实际作用是建立一个软链接:rewrite.load -> ../mods-available/rewrite.load 2、在默认或自定义的虚拟主机的配置项中修改:AllowOverride None ->AllowOverride A... 阅读全文

posted @ 2013-11-26 11:34 “清风轩” 阅读(250) 评论(0) 推荐(0)