
PHP
文章平均质量分 52
iteye_17061
这个作者很懒,什么都没留下…
展开
-
windows php memcache扩展
[size=medium] 今晚找了一晚的memcache的配置,其实,是挺简单的。难就难在那些文件的查找。所以,要把它们那个URL记下来。以后就可以容易配置啦。 [url=http://memcached.org/]Memcached 官网[/url],可惜只有源码,没有 windows 编译版。 [url=http://code.jellycan.com/memcached/...原创 2013-07-27 22:57:53 · 89 阅读 · 0 评论 -
PHP计算字符数
[size=medium]PHP计算字符数[/size] [code="PHP"] //计算字符数 private function countStr($str){ $cclen=0; $asclen=strlen($str); $ind=0; $hascc=ereg("[xa1-xfe]",$str); #判断是否有汉字 $hasasc=ereg("[...原创 2013-09-02 15:28:31 · 320 阅读 · 0 评论 -
flash 学习
[size=medium]FLASH [url=http://www.cnblogs.com/levis/archive/2008/10/03/1303517.html]HTML插入FLASH的全兼容完美解决方案[/url] [url=http://www.2cto.com/kf/200804/25464.html]用PHP动态创建Flash动画[/url] [url=ht...原创 2013-09-09 10:13:59 · 149 阅读 · 0 评论 -
建立window SVN服务器
[size=medium][url=http://blog.sina.com.cn/s/blog_62949ff40100ofop.html]建立window SVN服务器[/url][/size]原创 2013-09-10 11:31:22 · 115 阅读 · 0 评论 -
linux php 安装sql server扩展
参照: 基于Linux下PHP连接SQL Server的FreeTDS配置 使用phpize建立php扩展 Cannot find config.m4. 注:php安装地方 /usr/local/php php源码包 /usr/local/src/php-4.3.5 FreeTDs下载http://ftp.ibiblio....原创 2013-10-17 15:24:27 · 962 阅读 · 0 评论 -
让nginx 支持 pathinfo
server { listen 88; server_name abccom; root /var/www/abc; index index.html index.htm index.php; location ~ .*\.php($|/) { ...原创 2013-11-29 14:38:37 · 114 阅读 · 0 评论 -
php调用存储过程返回结果集
php调用存储过程返回结果集,解决can't return a result set in the given context错误的方法 需要php调用存储过程,返回一个结果集,发现很困难,找了半天,终于在老外的论坛上找到解决方案,这里本地化一下。 关键就是mysql_connect,第四个参数加上1,131072 $lin...原创 2014-04-24 12:07:09 · 605 阅读 · 0 评论 -
LNMP环境安装
LAMP环境搭建 linux centos.3_x64 nginx 1.6.2 mysql 5.6.21 php 5.3.29 安装依赖库 [root@test software]# yum install wget [root@test software]# yum install pcre [root@test software]#yum install open...原创 2014-10-20 15:44:42 · 116 阅读 · 0 评论