<?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.liguosong.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.liguosong.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 May 2018 01:02:19 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.2</generator>
		<item>
		<title>FastCgi与PHP-fpm之间是个什么样的关系</title>
		<link>http://www.liguosong.com/2015/11/04/fastcgi%e4%b8%8ephp-fpm%e4%b9%8b%e9%97%b4%e6%98%af%e4%b8%aa%e4%bb%80%e4%b9%88%e6%a0%b7%e7%9a%84%e5%85%b3%e7%b3%bb/</link>
		<comments>http://www.liguosong.com/2015/11/04/fastcgi%e4%b8%8ephp-fpm%e4%b9%8b%e9%97%b4%e6%98%af%e4%b8%aa%e4%bb%80%e4%b9%88%e6%a0%b7%e7%9a%84%e5%85%b3%e7%b3%bb/#comments</comments>
		<pubDate>Wed, 04 Nov 2015 10:23:02 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=540</guid>
		<description><![CDATA[首先，CGI是干嘛的？CGI是为了保证web server传递过来的数据是标准格式的，方便CGI程序的编写者。 [...]]]></description>
				<content:encoded><![CDATA[<p>首先，CGI是干嘛的？CGI是为了保证web server传递过来的数据是标准格式的，方便CGI程序的编写者。</p>
<blockquote><p>web server（比如说nginx）只是内容的分发者。比如，如果请求<code>/index.html</code>，那么web server会去文件系统中找到这个文件，发送给浏览器，这里分发的是静态数据。好了，如果现在请求的是<code>/index.php</code>，根据配置文件，nginx知道这个不是静态文件，需要去找PHP解析器来处理，那么他会把这个请求简单处理后交给PHP解析器。Nginx会传哪些数据给PHP解析器呢？url要有吧，查询字符串也得有吧，POST数据也要有，HTTP header不能少吧，好的，CGI就是规定要传哪些数据、以什么样的格式传递给后方处理这个请求的协议。仔细想想，你在PHP代码中使用的用户从哪里来的。</p>
<p>当web server收到<code>/index.php</code>这个请求后，会启动对应的CGI程序，这里就是PHP的解析器。接下来PHP解析器会解析php.ini文件，初始化执行环境，然后处理请求，再以规定CGI规定的格式返回处理后的结果，退出进程。web server再把结果返回给浏览器。</p></blockquote>
<p>好了，CGI是个协议，跟进程什么的没关系。那fastcgi又是什么呢？Fastcgi是用来提高CGI程序性能的。</p>
<blockquote><p>提高性能，那么CGI程序的性能问题在哪呢？&#8221;PHP解析器会解析php.ini文件，初始化执行环境&#8221;，就是这里了。标准的CGI对每个请求都会执行这些步骤（不闲累啊！启动进程很累的说！），所以处理每个时间的时间会比较长。这明显不合理嘛！那么Fastcgi是怎么做的呢？首先，Fastcgi会先启一个master，解析配置文件，初始化执行环境，然后再启动多个worker。当请求过来时，master会传递给一个worker，然后立即可以接受下一个请求。这样就避免了重复的劳动，效率自然是高。而且当worker不够用时，master可以根据配置预先启动几个worker等着；当然空闲worker太多时，也会停掉一些，这样就提高了性能，也节约了资源。这就是fastcgi的对进程的管理。</p></blockquote>
<p>那PHP-FPM又是什么呢？是一个实现了Fastcgi的程序，被PHP官方收了。</p>
<blockquote><p>大家都知道，PHP的解释器是php-cgi。php-cgi只是个CGI程序，他自己本身只能解析请求，返回结果，不会进程管理（皇上，臣妾真的做不到啊！）所以就出现了一些能够调度php-cgi进程的程序，比如说由lighthttpd分离出来的spawn-fcgi。好了PHP-FPM也是这么个东东，在长时间的发展后，逐渐得到了大家的认可（要知道，前几年大家可是抱怨PHP-FPM稳定性太差的），也越来越流行。</p></blockquote>
<p>网上有的说，fastcgi是一个协议，php-fpm实现了这个协议</p>
<blockquote><p>对。</p></blockquote>
<p>有的说，php-fpm是fastcgi进程的管理器，用来管理fastcgi进程的</p>
<blockquote><p>对。php-fpm的管理对象是php-cgi。但不能说php-fpm是fastcgi进程的管理器，因为前面说了fastcgi是个协议，似乎没有这么个进程存在，就算存在php-fpm也管理不了他（至少目前是）。 有的说，php-fpm是php内核的一个补丁</p>
<p>以前是对的。因为最开始的时候php-fpm没有包含在PHP内核里面，要使用这个功能，需要找到与源码版本相同的php-fpm对内核打补丁，然后再编译。后来PHP内核集成了PHP-FPM之后就方便多了，使用<code>--enalbe-fpm</code>这个编译参数即可。</p></blockquote>
<p>有的说，修改了php.ini配置文件后，没办法平滑重启，所以就诞生了php-fpm</p>
<blockquote><p>是的，修改php.ini之后，php-cgi进程的确是没办法平滑重启的。php-fpm对此的处理机制是新的worker用新的配置，已经存在的worker处理完手上的活就可以歇着了，通过这种机制来平滑过度。</p></blockquote>
<p>还有的说PHP-CGI是PHP自带的FastCGI管理器，那这样的话干吗又弄个php-fpm出</p>
<blockquote><p>不对。php-cgi只是解释PHP脚本的程序而已。</p></blockquote>
<p>原文引自</p>
<h1 id="questionTitle" data-id="1010000000256516"><a href="http://segmentfault.com/q/1010000000256516">搞不清FastCgi与PHP-fpm之间是个什么样的关系</a></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2015/11/04/fastcgi%e4%b8%8ephp-fpm%e4%b9%8b%e9%97%b4%e6%98%af%e4%b8%aa%e4%bb%80%e4%b9%88%e6%a0%b7%e7%9a%84%e5%85%b3%e7%b3%bb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>brew install php56</title>
		<link>http://www.liguosong.com/2015/11/04/brew-install-php56/</link>
		<comments>http://www.liguosong.com/2015/11/04/brew-install-php56/#comments</comments>
		<pubDate>Wed, 04 Nov 2015 07:43:47 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=529</guid>
		<description><![CDATA[Dupes brew tap homebrew/dupes 加入版本 brew tap homebrew/ve [...]]]></description>
				<content:encoded><![CDATA[<p>Dupes</p>
<pre class="brush:bash">brew tap homebrew/dupes</pre>
<p>加入版本</p>
<pre class="brush:bash">brew tap homebrew/versions</pre>
<p>加入PHP</p>
<pre class="brush:bash">brew tap homebrew/homebrew-php</pre>
<p>列出php5.6的选项</p>
<pre class="brush:bash">brew options php56</pre>
<p>好了，开始安装吧，go</p>
<pre class="brush:bash">brew install php56</pre>
<p>在安装的时候，没有顺利的安装成功，碰到倒了如下错误。</p>
<pre class="brush:bash"> wrong number of arguments (3 for 0..2)</pre>
<p>这个错误猜测可能是因为之前已经有安装过的PHP版本，后来把这个给删掉就好了。<a href="http://www.liguosong.com/2015/11/04/error-failed-to-update-tap-josegonzalezphp/">删除方法点击这里</a></p>
<p>安装完成之后，记得设置php的lib目录，否则在cli的模式下不能使用最新的。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2015/11/04/brew-install-php56/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error: Failed to update tap: josegonzalez/php</title>
		<link>http://www.liguosong.com/2015/11/04/error-failed-to-update-tap-josegonzalezphp/</link>
		<comments>http://www.liguosong.com/2015/11/04/error-failed-to-update-tap-josegonzalezphp/#comments</comments>
		<pubDate>Wed, 04 Nov 2015 06:57:16 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=526</guid>
		<description><![CDATA[最近很久没有更新brew了，刚才执行了一下 brew update 结果出现了如下错误： Error: Fai [...]]]></description>
				<content:encoded><![CDATA[<p>最近很久没有更新brew了，刚才执行了一下</p>
<pre class="brush:bash">brew update</pre>
<p>结果出现了如下错误：</p>
<pre class="brush:bash">Error: Failed to update tap: josegonzalez/php</pre>
<p>错误原因是因为现在php的源发生了变更，所以这里出现了无法更新的问题。解决方案是可以把这个源给删掉。</p>
<pre class="brush:bash">brew untap josegonzalez/php</pre>
<p>当然，删掉之后，需要增加新的源，看一下<a href="http://www.liguosong.com/2015/11/04/brew-install-php56/">brew 升级 php56</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2015/11/04/error-failed-to-update-tap-josegonzalezphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>imagecopyresized和imagecopyresampled的区别</title>
		<link>http://www.liguosong.com/2015/06/30/imagecopyresized%e5%92%8cimagecopyresampled%e7%9a%84%e5%8c%ba%e5%88%ab/</link>
		<comments>http://www.liguosong.com/2015/06/30/imagecopyresized%e5%92%8cimagecopyresampled%e7%9a%84%e5%8c%ba%e5%88%ab/#comments</comments>
		<pubDate>Tue, 30 Jun 2015 08:33:22 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=499</guid>
		<description><![CDATA[imagecopyresized和imagecopyresampled都是拷贝部分图像并调整大小，但是这两个函 [...]]]></description>
				<content:encoded><![CDATA[<p>imagecopyresized和imagecopyresampled都是拷贝部分图像并调整大小，但是这两个函数有一个很大的区别，就是imagecopyresized生成的图像不如imagecopyresampled清晰，但是imagecopyresized生成的速度要比imagecopyresampled快，图片要比imagecopyresampled小。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2015/06/30/imagecopyresized%e5%92%8cimagecopyresampled%e7%9a%84%e5%8c%ba%e5%88%ab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP实现下载文件</title>
		<link>http://www.liguosong.com/2015/06/19/php%e5%ae%9e%e7%8e%b0%e4%b8%8b%e8%bd%bd%e6%96%87%e4%bb%b6/</link>
		<comments>http://www.liguosong.com/2015/06/19/php%e5%ae%9e%e7%8e%b0%e4%b8%8b%e8%bd%bd%e6%96%87%e4%bb%b6/#comments</comments>
		<pubDate>Fri, 19 Jun 2015 07:22:19 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=496</guid>
		<description><![CDATA[$fileName = "text.pdf"; $file = fopen ($fileName, "r" ) [...]]]></description>
				<content:encoded><![CDATA[<pre class="brush:php">$fileName = "text.pdf";
$file = fopen ($fileName, "r" );
//输入文件标签
Header ("Content-type: application/octet-stream");
Header ("Accept-Ranges: bytes");
Header ("Accept-Length: " . filesize ($fileName));
Header ("Content-Disposition: attachment; filename=" . time() . ".pdf");
//输出文件内容
//读取文件内容并直接输出到浏览器
echo fread ($file, filesize ($fileName));
fclose ($file);</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2015/06/19/php%e5%ae%9e%e7%8e%b0%e4%b8%8b%e8%bd%bd%e6%96%87%e4%bb%b6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php curl 直接导致进程崩溃的问题</title>
		<link>http://www.liguosong.com/2015/05/21/php-curl-%e7%9b%b4%e6%8e%a5%e5%af%bc%e8%87%b4%e8%bf%9b%e7%a8%8b%e5%b4%a9%e6%ba%83%e7%9a%84%e9%97%ae%e9%a2%98/</link>
		<comments>http://www.liguosong.com/2015/05/21/php-curl-%e7%9b%b4%e6%8e%a5%e5%af%bc%e8%87%b4%e8%bf%9b%e7%a8%8b%e5%b4%a9%e6%ba%83%e7%9a%84%e9%97%ae%e9%a2%98/#comments</comments>
		<pubDate>Thu, 21 May 2015 10:05:43 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=486</guid>
		<description><![CDATA[刚才在项目中，图片上传的地方，碰见了一个很奇葩的问题。项目的图片会通过curl上传到其它部门的接口。结果在上传 [...]]]></description>
				<content:encoded><![CDATA[<p>刚才在项目中，图片上传的地方，碰见了一个很奇葩的问题。项目的图片会通过curl上传到其它部门的接口。结果在上传的时候，直接导致进程都死了。。收到了如下的错误：<a href="http://www.liguosong.com/wp-content/uploads/2015/05/8DFA5F21-FF5B-4034-8001-305C9D4EAF04.jpg"><img class="alignnone size-full wp-image-487" alt="8DFA5F21-FF5B-4034-8001-305C9D4EAF04" src="http://www.liguosong.com/wp-content/uploads/2015/05/8DFA5F21-FF5B-4034-8001-305C9D4EAF04.jpg" width="798" height="560" /></a></p>
<p>&nbsp;</p>
<p>结果就在google上查了很久，无解。。。在apache上收到的错误，也仅仅有这么一句话：</p>
<pre class="brush:bash">[Thu May 21 16:35:48.050307 2015] [core:notice] [pid 7084] AH00052: child pid 7095 exit signal Segmentation fault (11)</pre>
<p>不过发现在apache的errorlog上有这么一句话：</p>
<pre class="brush:bash">PHP Warning:  Module 'http' already loaded in Unknown on line 0</pre>
<p>这个http的module是在项目中用的一个httpRequest的封装。。那么就试着在php.ini中将这个module暂时禁用，发现curl居然好用了。。难道是因为php在启动的时候，这个warning导致的curl不能用了？看来在php启动的时候，warning还是要解决掉。以免引起其它的问题。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2015/05/21/php-curl-%e7%9b%b4%e6%8e%a5%e5%af%bc%e8%87%b4%e8%bf%9b%e7%a8%8b%e5%b4%a9%e6%ba%83%e7%9a%84%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP实现BF算法</title>
		<link>http://www.liguosong.com/2014/11/13/php%e5%ae%9e%e7%8e%b0bf%e7%ae%97%e6%b3%95/</link>
		<comments>http://www.liguosong.com/2014/11/13/php%e5%ae%9e%e7%8e%b0bf%e7%ae%97%e6%b3%95/#comments</comments>
		<pubDate>Thu, 13 Nov 2014 10:04:24 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=468</guid>
		<description><![CDATA[BF算法（Brute Force） 从字符串主S中查找到字符串T的位置。每次一个字符串的对比，若相等，则继续查 [...]]]></description>
				<content:encoded><![CDATA[<p>BF算法（Brute Force）</p>
<p>从字符串主S中查找到字符串T的位置。每次一个字符串的对比，若相等，则继续查找后面的字符串。不相等，则从S的下一个字符串继续查找。最后找不到，则返回了-1，否则返回T在S中的开发位置。</p>
<p>下面是PHP的实现：</p>
<pre class="brush:php">&lt;?php
 function index($str, $reg, $startPos = 0) {
    $strArr = str_split($str);
    $regArr = str_split($reg);

    if ($startPos &gt;= count($strArr)) {
        return -1;
    }

    $i = $startPos;
    $j = 0;

     while($i &lt; count($strArr) &amp;&amp; $j &lt; count($regArr)) {
         if ($strArr[$i] == $regArr[$j]) {
             $i++;
             $j++;
         } else {
             $i = $i - $j + 1;
             $j = 0;
         }

         if ($j &gt;= count($regArr))
         {
             return $i - count($regArr);
         }
     }

     return -1;
 }

 $str = "abdsfasjdkfl";
 $reg = "dkfl";
 print_r(index($str, $reg, 9));</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2014/11/13/php%e5%ae%9e%e7%8e%b0bf%e7%ae%97%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php 快速排序</title>
		<link>http://www.liguosong.com/2014/11/04/php-%e5%bf%ab%e9%80%9f%e6%8e%92%e5%ba%8f/</link>
		<comments>http://www.liguosong.com/2014/11/04/php-%e5%bf%ab%e9%80%9f%e6%8e%92%e5%ba%8f/#comments</comments>
		<pubDate>Tue, 04 Nov 2014 10:03:11 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=461</guid>
		<description><![CDATA[之前写冒泡，选择排序的算法。今天就抽空看看快速排序，快速排序先选择一个基数，将数组中的数据分别与这个基数对比。 [...]]]></description>
				<content:encoded><![CDATA[<p>之前写冒泡，选择排序的算法。今天就抽空看看快速排序，快速排序先选择一个基数，将数组中的数据分别与这个基数对比。小于基数的放在一组，大于基数的放在一组。最后在递归对这两个数组继续排序。最后merge返回就是排序好的数据了。</p>
<pre class="brush:php">function quick_sort(array $arr) {
    $length = count($arr);

    if ($length &lt;= 1) return $arr;

    $leftArr = $rightArr = array();
    $baseValue = $arr[0];

    for ($i = 1; $i &lt;= $length - 1; $i++) {
        if ($arr[$i] &lt;= $baseValue)
            $leftArr[] = $arr[$i];
        else
            $rightArr[] = $arr[$i];
    }

    return array_merge(quick_sort($leftArr), array($baseValue), quick_sort($rightArr));
}

print_r(quick_sort(array(1,5,3,6,7,2)));</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="xunlei_com_thunder_helper_plugin_d462f475-c18e-46be-bd10-327458d045bd"></div>
<div id="xunlei_com_thunder_helper_plugin_d462f475-c18e-46be-bd10-327458d045bd"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2014/11/04/php-%e5%bf%ab%e9%80%9f%e6%8e%92%e5%ba%8f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php Invalid photo dimension</title>
		<link>http://www.liguosong.com/2014/11/04/php-invalid-photo-dimension/</link>
		<comments>http://www.liguosong.com/2014/11/04/php-invalid-photo-dimension/#comments</comments>
		<pubDate>Tue, 04 Nov 2014 03:29:31 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=458</guid>
		<description><![CDATA[刚才线上的项目，图片旋转的功能，不能使用了。奇怪的是这功能，很久没有变动了。突然就失灵了。后来在本地服务器上测 [...]]]></description>
				<content:encoded><![CDATA[<p>刚才线上的项目，图片旋转的功能，不能使用了。奇怪的是这功能，很久没有变动了。突然就失灵了。后来在本地服务器上测试，正常使用。估计很有可能跟服务器的配置有关。于是把服务器的log下载下来，看了看。硬盘满载了。。原因是因为getimagesize的函数报了一个warning:Invalid photo dimension。估计这个方法，在计算图片的高宽的时候，将远程服务器的地址下载下来了。本地没有空间造成的。</p>
<pre class="brush:php">list($width, $height) = getimagesize($url);</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2014/11/04/php-invalid-photo-dimension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php二分查找</title>
		<link>http://www.liguosong.com/2014/11/03/php%e4%ba%8c%e5%88%86%e6%9f%a5%e6%89%be/</link>
		<comments>http://www.liguosong.com/2014/11/03/php%e4%ba%8c%e5%88%86%e6%9f%a5%e6%89%be/#comments</comments>
		<pubDate>Mon, 03 Nov 2014 15:01:14 +0000</pubDate>
		<dc:creator>lgs</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.liguosong.com/?p=455</guid>
		<description><![CDATA[二分查找法，每次查找的数据，都是上一次的一半。所以速度很快。不过需要建立在已经排序好的数组上。 &#60;?ph [...]]]></description>
				<content:encoded><![CDATA[<p>二分查找法，每次查找的数据，都是上一次的一半。所以速度很快。不过需要建立在已经排序好的数组上。</p>
<pre class="brush:php">&lt;?php
function binarySearch(array $arr, $target) {
    $low = 0;
    $max = count($arr) - 1;

    while($low &lt;= $max) {
        $mid = (int)(($max + $low) / 2);

        if ($arr[$mid] &gt; $target) $max = $mid - 1;

        if ($arr[$mid] &lt; $target) $low = $mid + 1;

        if ($arr[$mid] == $target) return $mid;
    }

    return false;
}

echo binarySearch(array(1,2,3,4,5,6,7,8,9,10), 3);</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.liguosong.com/2014/11/03/php%e4%ba%8c%e5%88%86%e6%9f%a5%e6%89%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
