<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>PHP源码阅读，PHP设计模式，PHP学习笔记，项目管理-胖胖的空间 的评论</title>
	<atom:link href="http://www.phppan.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phppan.com</link>
	<description>PHP　内核　扩展　程序　项目管理</description>
	<lastBuildDate>Fri, 27 Apr 2012 05:06:17 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v= 5.0.1 Final</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Tarfly 对《PHP的Socket编程》的评论</title>
		<link>http://www.phppan.com/2011/02/php-socket/comment-page-1/#comment-2647</link>
		<dc:creator>Tarfly</dc:creator>
		<pubDate>Fri, 27 Apr 2012 05:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1268#comment-2647</guid>
		<description>谢谢分享</description>
		<content:encoded><![CDATA[<p>谢谢分享</p>
]]></content:encoded>
	</item>
	<item>
		<title>胖胖 对《Form表单的enctype属性和method属性》的评论</title>
		<link>http://www.phppan.com/2012/04/form-enctype-method/comment-page-1/#comment-2646</link>
		<dc:creator>胖胖</dc:creator>
		<pubDate>Wed, 25 Apr 2012 01:55:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1651#comment-2646</guid>
		<description>是我描述有些问题，已经修改。非常感谢！^_^</description>
		<content:encoded><![CDATA[<p>是我描述有些问题，已经修改。非常感谢！^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>amani11 对《Form表单的enctype属性和method属性》的评论</title>
		<link>http://www.phppan.com/2012/04/form-enctype-method/comment-page-1/#comment-2645</link>
		<dc:creator>amani11</dc:creator>
		<pubDate>Mon, 23 Apr 2012 09:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1651#comment-2645</guid>
		<description>text/plain编码是以name=value键值对为基础，以\r\n连接；如果服务端的程序是PHP的话，使用此编码，无论是GET还是POST方法都无法获取数据，为什么呢？因为PHP根本就没有针对这种编码的处理函数。


这是不对的，php可以接收格式的数据
&lt;?php
$stream	= fopen(&quot;php://input&quot;, &quot;r&quot;); 
$data	= stream_get_contents($stream);
//$data就是提交的数据，格式如你所说</description>
		<content:encoded><![CDATA[<p>text/plain编码是以name=value键值对为基础，以\r\n连接；如果服务端的程序是PHP的话，使用此编码，无论是GET还是POST方法都无法获取数据，为什么呢？因为PHP根本就没有针对这种编码的处理函数。</p>
<p>这是不对的，php可以接收格式的数据<br />
&lt;?php<br />
$stream	= fopen(&quot;php://input&quot;, &quot;r&quot;);<br />
$data	= stream_get_contents($stream);<br />
//$data就是提交的数据，格式如你所说</p>
]]></content:encoded>
	</item>
	<item>
		<title>jacky 对《二叉树及二叉排序树的PHP实现》的评论</title>
		<link>http://www.phppan.com/2010/04/binary-tree-and-binary-sort-tree-php/comment-page-1/#comment-2641</link>
		<dc:creator>jacky</dc:creator>
		<pubDate>Fri, 30 Mar 2012 09:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=641#comment-2641</guid>
		<description>此人对OOP以及对数据结构的了解非一般人能企及呀。
只能用叹为观止来形容一下了。</description>
		<content:encoded><![CDATA[<p>此人对OOP以及对数据结构的了解非一般人能企及呀。<br />
只能用叹为观止来形容一下了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>yoyo 对《再读《程序员修炼之道》总结》的评论</title>
		<link>http://www.phppan.com/2012/02/the-pragmatic-programmer/comment-page-1/#comment-2632</link>
		<dc:creator>yoyo</dc:creator>
		<pubDate>Tue, 20 Mar 2012 08:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1607#comment-2632</guid>
		<description>fkook 难道是来膜拜你的？</description>
		<content:encoded><![CDATA[<p>fkook 难道是来膜拜你的？</p>
]]></content:encoded>
	</item>
	<item>
		<title>TonySeek 对《关于列表推导式》的评论</title>
		<link>http://www.phppan.com/2012/03/list-comprehensions/comment-page-1/#comment-2631</link>
		<dc:creator>TonySeek</dc:creator>
		<pubDate>Tue, 20 Mar 2012 05:31:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1626#comment-2631</guid>
		<description>哈哈，就觉得推导式很像集合的定义。

其实我觉得 PHP 还是挺需要这个糖的，用 array_map 和 array_filter 组合写出来的代码可读性非常不好，foreach 又要单独弄个容器去收集产生的新集合……毕竟已经是脚本语言了，像 C/Java 那样去写还是很不爽的。</description>
		<content:encoded><![CDATA[<p>哈哈，就觉得推导式很像集合的定义。</p>
<p>其实我觉得 PHP 还是挺需要这个糖的，用 array_map 和 array_filter 组合写出来的代码可读性非常不好，foreach 又要单独弄个容器去收集产生的新集合……毕竟已经是脚本语言了，像 C/Java 那样去写还是很不爽的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>胖胖 对《你可能不了解的strtotime函数》的评论</title>
		<link>http://www.phppan.com/2011/06/php-strtotime/comment-page-1/#comment-2624</link>
		<dc:creator>胖胖</dc:creator>
		<pubDate>Thu, 08 Mar 2012 01:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1410#comment-2624</guid>
		<description>可以举个例子不？</description>
		<content:encoded><![CDATA[<p>可以举个例子不？</p>
]]></content:encoded>
	</item>
	<item>
		<title>iseeufo.com 对《你可能不了解的strtotime函数》的评论</title>
		<link>http://www.phppan.com/2011/06/php-strtotime/comment-page-1/#comment-2623</link>
		<dc:creator>iseeufo.com</dc:creator>
		<pubDate>Wed, 07 Mar 2012 13:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1410#comment-2623</guid>
		<description>strtotime 在不同系统下和版本的php下显示结果不同，你碰到过没？</description>
		<content:encoded><![CDATA[<p>strtotime 在不同系统下和版本的php下显示结果不同，你碰到过没？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Er.Z 对《如何在用户中断时停止程序的运行》的评论</title>
		<link>http://www.phppan.com/2012/02/stop-program-by-user-abort/comment-page-1/#comment-2622</link>
		<dc:creator>Er.Z</dc:creator>
		<pubDate>Mon, 05 Mar 2012 03:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1612#comment-2622</guid>
		<description>顶，这种应用在某些特定场景应该有用。</description>
		<content:encoded><![CDATA[<p>顶，这种应用在某些特定场景应该有用。</p>
]]></content:encoded>
	</item>
	<item>
		<title>胖胖 对《再读《程序员修炼之道》总结》的评论</title>
		<link>http://www.phppan.com/2012/02/the-pragmatic-programmer/comment-page-1/#comment-2621</link>
		<dc:creator>胖胖</dc:creator>
		<pubDate>Sun, 04 Mar 2012 10:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1607#comment-2621</guid>
		<description>实习生的招聘工作已经在年前完成了。今年的应该还没开始。</description>
		<content:encoded><![CDATA[<p>实习生的招聘工作已经在年前完成了。今年的应该还没开始。</p>
]]></content:encoded>
	</item>
	<item>
		<title>fkook 对《再读《程序员修炼之道》总结》的评论</title>
		<link>http://www.phppan.com/2012/02/the-pragmatic-programmer/comment-page-1/#comment-2620</link>
		<dc:creator>fkook</dc:creator>
		<pubDate>Fri, 02 Mar 2012 05:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1607#comment-2620</guid>
		<description>请问你们公司要实习生么、？php方向。</description>
		<content:encoded><![CDATA[<p>请问你们公司要实习生么、？php方向。</p>
]]></content:encoded>
	</item>
	<item>
		<title>ITX351 对《棋盘制作》的评论</title>
		<link>http://www.phppan.com/2009/09/boardproduction/comment-page-1/#comment-2619</link>
		<dc:creator>ITX351</dc:creator>
		<pubDate>Thu, 01 Mar 2012 10:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=72#comment-2619</guid>
		<description>代码有问题吧？。。
4 5
0 0 1 1 1
1 1 0 0 0
1 0 1 0 1
0 1 0 1 0</description>
		<content:encoded><![CDATA[<p>代码有问题吧？。。<br />
4 5<br />
0 0 1 1 1<br />
1 1 0 0 0<br />
1 0 1 0 1<br />
0 1 0 1 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>PHP连接处理(normal,aborted,timeout) 对《如何在用户中断时停止程序的运行》的评论</title>
		<link>http://www.phppan.com/2012/02/stop-program-by-user-abort/comment-page-1/#comment-2616</link>
		<dc:creator>PHP连接处理(normal,aborted,timeout)</dc:creator>
		<pubDate>Mon, 27 Feb 2012 09:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.phppan.com/?p=1612#comment-2616</guid>
		<description>[...] PHP连接处理(normal,aborted,timeout) By thirteen on 27/02/2012   上周和胖哥聊起PHP对于abord连接的处理问题，今天一上班他就告诉我说已经写了一篇文章说明上周我俩讨论的问题《如何在用户中断时停止程序的运行 》，在感叹胖哥勤劳的同时，我羞愧万分，为了弥补我的部分罪恶感，于是乎特意做了以下笔记以作参考。 [...]</description>
		<content:encoded><![CDATA[<p>[...] PHP连接处理(normal,aborted,timeout) By thirteen on 27/02/2012   上周和胖哥聊起PHP对于abord连接的处理问题，今天一上班他就告诉我说已经写了一篇文章说明上周我俩讨论的问题《如何在用户中断时停止程序的运行 》，在感叹胖哥勤劳的同时，我羞愧万分，为了弥补我的部分罪恶感，于是乎特意做了以下笔记以作参考。 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

