摘要: 1、mysqli_real_escape_string //转义 SQL 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集 阅读全文
posted @ 2013-03-26 17:42 忆殇之痕 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 一、实例化一个beanstalkd类$pheanstalk = new Pheanstalk('127.0.0.1');二、操作队列加入队列$pheanstalk->useTube('new_userh_ids'); //创建一个队列名称$pheanstalk->put(rtrim($ids,',')); //将内容加入到该队列读取队列$job = $pheanstalk->watch('sinav_db')->ignore('default')->reserve(5); //监视指定 阅读全文
posted @ 2013-03-26 16:16 忆殇之痕 阅读(486) 评论(0) 推荐(0) 编辑
摘要: php初始化httpsqs:include_once("httpsqs_client.php");$httpsqs = new httpsqs("127.0.0.1", 1218, "mypass123", "utf-8");php操作httpsqs:常用命令操作入队:$result = $httpsqs->put('xiongwei2', 'test1');获取队列中内容$result=$httpsqs->get('xiongwei2');查看队列信息$ 阅读全文
posted @ 2013-03-26 14:19 忆殇之痕 阅读(181) 评论(0) 推荐(0) 编辑
摘要: HTTPSQS安装ulimit -SHn 65535wget http://httpsqs.googlecode.com/files/libevent-2.0.12-stable.tar.gztar zxvf libevent-2.0.12-stable.tar.gzcd libevent-2.0.12-stable/./configure --prefix=/usr/local/libevent-2.0.12-stable/makemake installcd ../wget http://httpsqs.googlecode.com/files/tokyocabinet-1.4.47.ta 阅读全文
posted @ 2013-03-26 13:43 忆殇之痕 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 一、configure: error: bzlib.h is required解决: 升级安装:apt-get install libbz2-dev 阅读全文
posted @ 2013-03-26 13:36 忆殇之痕 阅读(137) 评论(0) 推荐(0) 编辑