configuring the fastcgi extension for iis 6.0
From its first version, Internet Information Services (IIS) has supported Common Gateway Interface (CGI), which is a standards-based protocol that allows information servers, such as IIS, to interface with external applications. FastCGI was introduced to address the scalability shortcomings of CGI.
在Netbeans中集成Composer管理PHP项目依赖
在java中这个问题是通过maven解决.maven中的依赖仓库设置可以让当前项目自动依赖其他项目类库代码.并且同步更新公用类库. php中现在有composer同样可以做到这点.
在Yaf中使用Zf2的配置和服务管理器
Yaf集成Zend2
设置内存GC提高IIS+PHP运行稳定性
IIS配置php提供web服务. 短期访问正常,长时间高压力访问容易崩溃. 表现为IIS提示500错误,php-cgi.exe崩溃. 此时在php日志中看不到任何异常,但windows事件日志记录下了php-cgi.exe应用程序错误. 其原因和php内存管理有关.有以下改善方法
zend2数据层代码示例
可别照抄,这只是我的一家之言.此方法结构化比较好,但是性能并不高.
PHP实现RGB,HSL,HSV色彩空间转换
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 […]
用PHP+GD扩展实现图像高斯模糊处理
很久以前写的代码了,现在才想起贴上来. 稍微更改并结合人脸识别可以实现自动模糊人物的脸部. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 […]