<?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>PHPMan--Live and learn &#187; php</title>
	<atom:link href="http://www.phpman.com.cn/archives/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phpman.com.cn</link>
	<description>不积跬步,无以至千里;不积小流,无以成江海</description>
	<lastBuildDate>Wed, 28 Jul 2010 02:39:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>php模块动态编译</title>
		<link>http://www.phpman.com.cn/archives/323</link>
		<comments>http://www.phpman.com.cn/archives/323#comments</comments>
		<pubDate>Sat, 09 Jan 2010 11:17:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpman.com.cn/?p=323</guid>
		<description><![CDATA[今天编译memcache扩展，由于从别的机器拷过来的，忘记make clean，出了点插曲，备忘下
cd memcache-2.2.5
/usr/local/bin/phpize
make clean
./configure &#8211;enable-memcache &#8211;with-php-config=/usr/local/bin/php-config &#8211;with-zlib-dir
make
make install
编译后会生成memcache.so
例如我的是：
/usr/local/lib/php/extensions/no-debug-non-zts-20060613/
修改php.ini
将extension_dir改为以上目录或将生成的so文件移至extension目录
添加行
extension=memcache.so
]]></description>
		<wfw:commentRss>http://www.phpman.com.cn/archives/323/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>php的$HTTP_RAW_POST_DATA</title>
		<link>http://www.phpman.com.cn/archives/143</link>
		<comments>http://www.phpman.com.cn/archives/143#comments</comments>
		<pubDate>Mon, 11 May 2009 09:25:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[HTTP_RAW_POST_DATA]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpman.com.cn/?p=143</guid>
		<description><![CDATA[今天一同事问我，他用了Content-Type=text/xml型，提交了一个xml文档内容给了php server,要怎么获得这个POST数据。
这把我愣住了，以前确实没写过这样的POST，赶紧查手册，发现有$HTTP_RAW_POST_DATA 这一项。对此的解释是：The RAW / uninterpreted HTTP POST information can be accessed with:   $GLOBALS['HTTP_RAW_POST_DATA'] This is useful in cases where the post Content-Type is not something PHP understands (such as text/xml).
意思是，由于PHP默认只识别application/x-www.form-urlencoded标准的数据类型，因此，对型如text/xml的内容无法解析为$_POST数组，故保留原型，交给$HTTP_RAW_POST_DAT来接收。
]]></description>
		<wfw:commentRss>http://www.phpman.com.cn/archives/143/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>获取用户IP地址的几个属性的区别</title>
		<link>http://www.phpman.com.cn/archives/90</link>
		<comments>http://www.phpman.com.cn/archives/90#comments</comments>
		<pubDate>Wed, 08 Apr 2009 03:28:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[编程相关]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpman.com.cn/?p=90</guid>
		<description><![CDATA[获取用户IP地址的几个属性的区别(HTTP_X_FORWARDED_FOR,HTTP_X_FORWARDED,HTTP_VIA,REMOTE_ADDR)]]></description>
		<wfw:commentRss>http://www.phpman.com.cn/archives/90/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>全排列算法</title>
		<link>http://www.phpman.com.cn/archives/84</link>
		<comments>http://www.phpman.com.cn/archives/84#comments</comments>
		<pubDate>Wed, 01 Apr 2009 11:53:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sort]]></category>

		<guid isPermaLink="false">http://www.phpman.com.cn/?p=84</guid>
		<description><![CDATA[全排列算法实现]]></description>
		<wfw:commentRss>http://www.phpman.com.cn/archives/84/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php正则语法(perl兼容)</title>
		<link>http://www.phpman.com.cn/archives/75</link>
		<comments>http://www.phpman.com.cn/archives/75#comments</comments>
		<pubDate>Tue, 31 Mar 2009 01:05:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[正则语法]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[正则]]></category>

		<guid isPermaLink="false">http://www.phpman.com.cn/?p=75</guid>
		<description><![CDATA[正则表达式是初学 Perl 的难点所在，不过只要一旦掌握其语法，你就可以拥有几乎无限的模式匹配能力，而且 Perl 编程的大部分工作都是掌握常规表达式]]></description>
		<wfw:commentRss>http://www.phpman.com.cn/archives/75/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
