2014-3-21 12:47 Friday  

PHP5.3.27 的扩展php_opcache.dll

测试平台:Windows 2008 R2 x64 (IIS7.5 FastCGI,Apache2.2.23,Apache2.4.3, Nginx 1.2.9)

包含 Non Thread Safe 和 Thread Safe

如果用的是 FastCGI 请使用 Non Thread Safe 版

php_opcache.dll 的使用方法

php.i...

阅读全文>>

2013-7-3 14:06 Wednesday  
php如何获取文件(图片)的mime 类型呢?可以使用php mime_content_type()函数,使用开发用的ubuntu server lamp的默认配置测试后完全支持,返回了正确的文件mime type。但是将该API项目移植到Centos 5.2(内核2.6) LAMP环境时,出现了如下错误提示:

Fatal error: Call to undefined function: m...

阅读全文>>

通过RewriteRule ^news-([0-9]+)\.html(.*)$ newsDetail.php?id=$1$2 [QSA]或者RewriteRule ^news-([0-9]+)\.html?(.*)$ newsDetail.php?id=$1$2 [QSA]

就能将 news-123.html?a=1b=1伪到newsDetail.php?id=123&a=1&b...

阅读全文>>

2012-1-30 18:38 Monday  

当在php.ini中开启extension=php_mssql.dll及extension=php_pdo_mssql.dll,重启服务器 后在phpinfo()中还是没有mssql扩展,这时候需要将以上两个dll文件级php5nsapi.dll复制到 c:\windows\system32下面,或者将 php   php/ext 加入到系统环境变量中即可。。

 

MMD...

阅读全文>>

我这种方式是在PHP中生成的,不是直接改html代码的方式,直接改代码的话请自行百度或是用我的方式做好后再在浏览器中查看。

1.将ckfinder放到合适的目录,比如ckeditor下面。

2.修改ckfinder下的config.php中的第33行,将return false;改为 return true;

3.配置ckeditor

一般对于这种常用到的东西,我都会整合成函数

function ckedi...

阅读全文>>