<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>征程无限 &#187; php</title>
	<atom:link href="http://www.chengyongxu.com/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chengyongxu.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 18:32:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>PHP-Fcgi下PHP的执行时间设置</title>
		<link>http://www.chengyongxu.com/blog/php-fcgi%e4%b8%8bphp%e7%9a%84%e6%89%a7%e8%a1%8c%e6%97%b6%e9%97%b4%e8%ae%be%e7%bd%ae/</link>
		<comments>http://www.chengyongxu.com/blog/php-fcgi%e4%b8%8bphp%e7%9a%84%e6%89%a7%e8%a1%8c%e6%97%b6%e9%97%b4%e8%ae%be%e7%bd%ae/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 03:44:16 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[WEB服务器]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php-fcgi]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=1142</guid>
		<description><![CDATA[<p>昨天，一个程序需要导出500条数据，结果发现到150条是，Nginx报出504 Gateway Timeout错误 经观察，发现大约30秒时超时，php.ini中执行时间配置已经是300秒： max_execution_time = 300 再查nginx的相关配置，无果。 写了一个php的测试页再测 echo &#8216;aaa&#8217;; set_time_limit(0); sleep(40); echo &#8216;aa&#8217;; 依然超时，可以确定set_time_limit这个函数没生效。 再查php-fcgi的配置php-fpm.conf,下边这个设置疑似有问题 30s 查官方文档：http://php-fpm.org/wiki/Configuration_File request_terminate_timeout &#8211; The timeout (in seconds) for serving a single request after which the worker process will &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/php-fcgi%e4%b8%8bphp%e7%9a%84%e6%89%a7%e8%a1%8c%e6%97%b6%e9%97%b4%e8%ae%be%e7%bd%ae/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/php-fcgi%e4%b8%8bphp%e7%9a%84%e6%89%a7%e8%a1%8c%e6%97%b6%e9%97%b4%e8%ae%be%e7%bd%ae/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>批量备份服务器配置文件和目录</title>
		<link>http://www.chengyongxu.com/blog/%e6%89%b9%e9%87%8f%e5%a4%87%e4%bb%bd%e6%9c%8d%e5%8a%a1%e5%99%a8%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6%e5%92%8c%e7%9b%ae%e5%bd%95/</link>
		<comments>http://www.chengyongxu.com/blog/%e6%89%b9%e9%87%8f%e5%a4%87%e4%bb%bd%e6%9c%8d%e5%8a%a1%e5%99%a8%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6%e5%92%8c%e7%9b%ae%e5%bd%95/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 03:41:21 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[shell编程]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=1082</guid>
		<description><![CDATA[<p>功能： 1. 只在备份机执行，远程的服务器只需要允许备份机用root通过密钥登录； 2. 在备份机上配置需要备份哪些服务器，在NEED_BACKUP_SERVERS这个数组增减； 3. 在备份机上配置需要备份服务器上哪些文件，在NEED_BACKUP_DETAIL这个数组增减，如果需要备份某台服务器上NEED_BACKUP_DETAIL数组里定义的某个文件就备份，不存在的文件则自动跳过，例如Web服务器上没my.cnf ， 也没有影响； 4. 如果服务器上产生的新备份和已经存在已往备份内容一样则只保留时间较早的备份。因为服务器的配置文件不是经常改动的； 5. 通过修改定义KEEP_BACKUP_NUM为个变量，可以决定远程服务器上保留最近多少份备份，我这里定义的是10份。备份机上保留所有远程服务器的备份。因为配置文件都比较小，不用担心磁盘空间占用问题。 用过下列技术： 1. 获取远程服务器IP，如果某台服务器没有公网IP则使用该服务器的“主机名_IP.备份年月日_备份时间.tar.gz 2. 通过循环、判断，对数组中的元素重新赋值； 本脚本下载地址： http://down.chengyongxu.com/Backup_Config_Files_Of_Remote_Servers.sh 下载之后请留意版本号和更新日志。 #!/bin/bash ################################################################## # Backup_Config_Files_Of_Remote_Servers # Env: Centos 5.5 x86_64 # Created by Hernan on 2011-04-06 &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/%e6%89%b9%e9%87%8f%e5%a4%87%e4%bb%bd%e6%9c%8d%e5%8a%a1%e5%99%a8%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6%e5%92%8c%e7%9b%ae%e5%bd%95/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/%e6%89%b9%e9%87%8f%e5%a4%87%e4%bb%bd%e6%9c%8d%e5%8a%a1%e5%99%a8%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6%e5%92%8c%e7%9b%ae%e5%bd%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP列出目录和文件</title>
		<link>http://www.chengyongxu.com/blog/php%e5%88%97%e5%87%ba%e7%9b%ae%e5%bd%95%e5%92%8c%e6%96%87%e4%bb%b6/</link>
		<comments>http://www.chengyongxu.com/blog/php%e5%88%97%e5%87%ba%e7%9b%ae%e5%bd%95%e5%92%8c%e6%96%87%e4%bb%b6/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 05:28:15 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[程序相关]]></category>
		<category><![CDATA[glob]]></category>
		<category><![CDATA[http_autoindex_module]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=924</guid>
		<description><![CDATA[<p>装Nginx时没装http_autoindex_module模块，不想重编了。 用PHP吧，实现autoindex也很方便。 有两种方法： 首选： &lt;?php /* ** glob的详细用法请参阅手册: ** http://cn2.php.net/manual/en/function.glob.php */ foreach (glob(“*”) as $filename) { if($filename != “index.php” ){ echo “&lt;a href=&#8217;./{$filename}&#8217; target=&#8217;_blank&#8217; &gt;{$filename} \t\n&lt;/a&gt;&lt;br/&gt;”; } } 当然也可以用比较传统的： &lt;?php $dir = “./”; $handle = @opendir($dir) &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/php%e5%88%97%e5%87%ba%e7%9b%ae%e5%bd%95%e5%92%8c%e6%96%87%e4%bb%b6/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/php%e5%88%97%e5%87%ba%e7%9b%ae%e5%bd%95%e5%92%8c%e6%96%87%e4%bb%b6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010总结和2011计划</title>
		<link>http://www.chengyongxu.com/blog/2010%e6%80%bb%e7%bb%93%e5%92%8c2011%e8%ae%a1%e5%88%92/</link>
		<comments>http://www.chengyongxu.com/blog/2010%e6%80%bb%e7%bb%93%e5%92%8c2011%e8%ae%a1%e5%88%92/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 01:41:07 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[心情随笔]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[DCF]]></category>
		<category><![CDATA[GRD3]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[iPad 2]]></category>
		<category><![CDATA[Ipod touch]]></category>
		<category><![CDATA[Macbook]]></category>
		<category><![CDATA[mldonkey]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[RHCA]]></category>
		<category><![CDATA[RHCE]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=909</guid>
		<description><![CDATA[<p>2010总结 财务： 1. 总入账（包括借钱） － 总支出（包括还钱） ＝ 369.07 ； PS: 一哥们赞我每天能净收入1块钱。 2. 租房占所有支出的41.9% ， 食物占18.49% 。 工作和IT技术： 1. 八月份换了工作，精神状态有了比较大的改观； 2. Bash Shell Script水平有所长进，把常用的安装配置工作都已经自动化了； 3. 本博客发了48篇博文，其中技术大类41篇，产量确实有点低哈； 4. 自学了RHCE，做完了相关实验。因为资金紧张，没有参加RHCE考试； 5. 没有学会PHP或Python，PHP学会的部分经常不用，又忘了； 6. 组装好了自己的文件服务器，集成了电驴(mldonkey)和SVN服务，已稳定运行了3个多月； 7. 不再对iPod Touch进行越狱了，使用正版，节约时间，享受服务。 运动和健康： 1. &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/2010%e6%80%bb%e7%bb%93%e5%92%8c2011%e8%ae%a1%e5%88%92/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/2010%e6%80%bb%e7%bb%93%e5%92%8c2011%e8%ae%a1%e5%88%92/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>日志过大报File size limit exceeded导致Cacti生成图形中断</title>
		<link>http://www.chengyongxu.com/blog/%e6%97%a5%e5%bf%97%e8%bf%87%e5%a4%a7%e6%8a%a5file-size-limit-exceeded%e5%af%bc%e8%87%b4cacti%e7%94%9f%e6%88%90%e5%9b%be%e5%bd%a2%e4%b8%ad%e6%96%ad/</link>
		<comments>http://www.chengyongxu.com/blog/%e6%97%a5%e5%bf%97%e8%bf%87%e5%a4%a7%e6%8a%a5file-size-limit-exceeded%e5%af%bc%e8%87%b4cacti%e7%94%9f%e6%88%90%e5%9b%be%e5%bd%a2%e4%b8%ad%e6%96%ad/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 04:10:38 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[服务器监控]]></category>
		<category><![CDATA[Cacti]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snmp]]></category>
		<category><![CDATA[snmpwalk]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=906</guid>
		<description><![CDATA[<p>突然间,Cacti不生成图形了 开始排查： # 1. 在监控端查看snmpd服务 service snmpd status #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-输出文字-开始&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- snmpd is stopped #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-输出文字-结束&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- #是Down掉的，先起来再说 service snmpd restart #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-输出文字-开始&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Stopping snmpd: [FAILED] Starting snmpd: [ OK ] #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-输出文字-结束&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- # 2. 看可否从客户端得到snmpd数据 snmpwalk -c thepassword -v 2c the_client_ip &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/%e6%97%a5%e5%bf%97%e8%bf%87%e5%a4%a7%e6%8a%a5file-size-limit-exceeded%e5%af%bc%e8%87%b4cacti%e7%94%9f%e6%88%90%e5%9b%be%e5%bd%a2%e4%b8%ad%e6%96%ad/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/%e6%97%a5%e5%bf%97%e8%bf%87%e5%a4%a7%e6%8a%a5file-size-limit-exceeded%e5%af%bc%e8%87%b4cacti%e7%94%9f%e6%88%90%e5%9b%be%e5%bd%a2%e4%b8%ad%e6%96%ad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>“version libmysqlclient_16 not defined in file libmysqlclient.so.16&#8230;”解决</title>
		<link>http://www.chengyongxu.com/blog/version-libmysqlclient_16-not-defined-in-file-libmysqlclient-so-16-%e8%a7%a3%e5%86%b3/</link>
		<comments>http://www.chengyongxu.com/blog/version-libmysqlclient_16-not-defined-in-file-libmysqlclient-so-16-%e8%a7%a3%e5%86%b3/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 09:26:21 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[WEB服务器]]></category>
		<category><![CDATA[数据库]]></category>
		<category><![CDATA[ldconfig]]></category>
		<category><![CDATA[libmysqlclient.so.16]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sphinx]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=892</guid>
		<description><![CDATA[<p>一个程序只要使用php的 session_start(); 函数，nginx就报502错误。 此时，nginx错误日志报： 2010/12/07 16:35:40 [error] 24679#0: *4 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: ip.ip.ip.ip, server: www.chengyongxu.com, request: “GET /ii.php HTTP/1.1&#8243;, upstream: “fastcgi://unix:/tmp/php-fcgi.sock:”, host: “www.chengyongxu.com” 奇怪，我没使用负载均衡呀。再看php-fpm的报错： Dec &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/version-libmysqlclient_16-not-defined-in-file-libmysqlclient-so-16-%e8%a7%a3%e5%86%b3/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/version-libmysqlclient_16-not-defined-in-file-libmysqlclient-so-16-%e8%a7%a3%e5%86%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>查看Memcache状态的php页面</title>
		<link>http://www.chengyongxu.com/blog/%e6%9f%a5%e7%9c%8bmemcache%e7%8a%b6%e6%80%81%e7%9a%84php%e9%a1%b5%e9%9d%a2/</link>
		<comments>http://www.chengyongxu.com/blog/%e6%9f%a5%e7%9c%8bmemcache%e7%8a%b6%e6%80%81%e7%9a%84php%e9%a1%b5%e9%9d%a2/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 06:57:17 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[数据库]]></category>
		<category><![CDATA[程序相关]]></category>
		<category><![CDATA[Memcache]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=883</guid>
		<description><![CDATA[<p>备份一下，免得以后再找 下载地址: http://mirror.chengyongxu.com/memcachephp.zip 源码的注释中有作者的联系方式。</p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/%e6%9f%a5%e7%9c%8bmemcache%e7%8a%b6%e6%80%81%e7%9a%84php%e9%a1%b5%e9%9d%a2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nginx与php分离配置</title>
		<link>http://www.chengyongxu.com/blog/nginx%e4%b8%8ephp%e5%88%86%e7%a6%bb%e9%85%8d%e7%bd%ae/</link>
		<comments>http://www.chengyongxu.com/blog/nginx%e4%b8%8ephp%e5%88%86%e7%a6%bb%e9%85%8d%e7%bd%ae/#comments</comments>
		<pubDate>Wed, 12 May 2010 03:30:26 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[WEB服务器]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php-fcgi]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=621</guid>
		<description><![CDATA[<p>#################################### #Nginx与php分离配置 #Author:楚霏 #Date: 2010-5-12 #Update: 2010-5-12 #Env: Centos 5.4 x86_64 #################################### 一、准备工作 #################################### 环境：Centos 5.4 x86_64 WEBServer IP: 10.0.0.240 PHPServer1 IP: 10.0.0.241 PHPServer1 IP: 10.0.0.242 #################################### 二、思路 #################################### WEBServer： 1.只负责接收http请求并分发； 2.只安装nginx,不安装php； 3.只建/www/wwwroot目录，不存放php代码； 4.所有静态文件使用CDN。 PHPServer： 1.只负责处理php请求； &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/nginx%e4%b8%8ephp%e5%88%86%e7%a6%bb%e9%85%8d%e7%bd%ae/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/nginx%e4%b8%8ephp%e5%88%86%e7%a6%bb%e9%85%8d%e7%bd%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gearman_Configuration</title>
		<link>http://www.chengyongxu.com/blog/gearman%e9%85%8d%e7%bd%ae/</link>
		<comments>http://www.chengyongxu.com/blog/gearman%e9%85%8d%e7%bd%ae/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 07:24:03 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[WEB服务器]]></category>
		<category><![CDATA[集群技术]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Gearman]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php-fcgi]]></category>
		<category><![CDATA[phpize]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=599</guid>
		<description><![CDATA[<p>#################################### #Gearman_Configuration #Author:楚霏 #Date: 2010-4-21 #Update:2010-4-21 #Env: Centos 5.4 x86_64 #################################### 一、准备工作 #################################### 环境：Centos 5.4 x86_64 所需软件： gearmand gearman（php支持所需） #################################### cd /usr/local/src/ wget -c http://launchpad.net/gearmand/trunk/0.13/+download/gearmand-0.13.tar.gz wget -c http://pecl.php.net/get/gearman-0.7.0.tgz 二、安装配置 #################################### （1）安装服务端gearmand cd /usr/local/src/ tar xvf gearmand-0.13.tar.gz &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/gearman%e9%85%8d%e7%bd%ae/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/gearman%e9%85%8d%e7%bd%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phpize简介</title>
		<link>http://www.chengyongxu.com/blog/phpize%e7%ae%80%e4%bb%8b/</link>
		<comments>http://www.chengyongxu.com/blog/phpize%e7%ae%80%e4%bb%8b/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 08:21:02 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[WEB服务器]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpize]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=432</guid>
		<description><![CDATA[<p>phpize 是属于 php-devel 中的东西，主要是设定 php 外挂模块的一些设定 例如你的php不支持mysql, mbstring,openssl等 实例应用: #环境php5.3.0, 不支持mysql扩展 #假如php的源码包在/usr/local/src/php-5.3.0 #php安装目录是/usr/local/php cd /usr/local/src/php-5.3.0/ext/mysql /usr/local/php/bin/phpize ./configure &#8211;with-php-config=/usr/local/php/bin/php-config make make install #这个时候你会看到mysql.so被拷贝到某个目录, 把mysql.so拷贝到你的extension_dir指向的路径, 在php.ini里增加extension=mysql.so #重启web服务器, 看一下phpinfo, 或者/usr/local/php/bin/php -m,应该支持mysql了, 完毕! 又例如增加imap支持 #安装依赖软件包 yum install libc-client-devel cd /usr/local/src/php-5.3.0/ext/imap &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/phpize%e7%ae%80%e4%bb%8b/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/phpize%e7%ae%80%e4%bb%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

