02 2012 档案
用PHP5.3搭建IIS出现FastCGI Error 错误!求助!
摘要:FastCGI Error The FastCGI Handler was unable to process the request. -------------------------------------------------------------------------------- Error Details: The FastCGI process has failed frequently recently. Try the request again in a while Error Number: -2147467259 (0x80004005). Error Desc 阅读全文
posted @ 2012-02-24 17:12 Right_MR 阅读(2864) 评论(0) 推荐(0)
MySQL中concat函数
摘要:转自:http://axislover.blog.163.com/blog/static/10776515200891551236219/本文通过实例介绍了MySQL中的concat函数的使用方法,比如select concat('11','22','33')。MySQL中concat函数使用方法:CONCAT(str1,str2,…)返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。注意:如果所有参数均为非二进制字符串,则结果为非二进制字符串。 如果自变量中含有任一二进制字符串,则结果为一个二进制字符串。一个数 阅读全文
posted @ 2012-02-17 15:35 Right_MR 阅读(2961) 评论(0) 推荐(0)
判断字符串是什么编码
摘要://判断字符串是什么编码if ($tag === mb_convert_encoding(mb_convert_encoding($tag, "GB2312", "UTF-8"), "UTF-8", "GB2312")) {}else {//如果是gb2312 的就转换为utf8的$tag = mb_convert_encoding($tag, 'UTF-8', 'GB2312');}1、把 GBK 编码字串转换成 UTF-8 编码字串<?php header("co 阅读全文
posted @ 2012-02-14 16:57 Right_MR 阅读(1629) 评论(0) 推荐(0)
CoreSeek快速安装
摘要:安装前,建议查看:源码包说明README;4.0/4.1版可参考3.2版本安装,步骤相同;如遇到问题,请看详细安装说明。##下载coreseek:coreseek 3.2.14:点击下载、coreseek 4.0.1:点击下载、coreseek 4.1:点击下载$ wget http://www.coreseek.cn/uploads/csft/3.2/coreseek-3.2.14.tar.gz$ 或者 http://www.coreseek.cn/uploads/csft/4.0/coreseek-4.0.1-beta.tar.gz$ 或者 http://www.coreseek.cn/u 阅读全文
posted @ 2012-02-01 10:55 Right_MR 阅读(469) 评论(0) 推荐(0)