<?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>Lyndon - PHP攻城师</title>
	<atom:link href="http://blog.lyphp.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.lyphp.com</link>
	<description></description>
	<lastBuildDate>Tue, 24 Apr 2012 06:15:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>再不用按F5了!</title>
		<link>http://blog.lyphp.com/archives/529</link>
		<comments>http://blog.lyphp.com/archives/529#comments</comments>
		<pubDate>Tue, 24 Apr 2012 04:23:27 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[WEB开发]]></category>
		<category><![CDATA[调试]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=529</guid>
		<description><![CDATA[前提：LINUX系统、安装inotify-tools、xdotool、双显示器 作用：保存代码时，自动刷新浏览器，再不用按F5了！ inotifywait -mrq  &#8211;exclude &#8220;.svn&#8221;  -e close_write /data/www/source &#124; while read line; do id=`xdotool getactivewindow &#124; head -1` xdotool search &#8211;onlyvisible &#8211;class &#8216;chrome&#8217; windowfocus key &#8211;clearmodifiers ctrl+r #xdotool search &#8211;onlyvisible &#8211;class &#8216;firefox&#8217; windowfocus key &#8211;clearmodifiers ctrl+r #xdotool search &#8211;onlyvisible &#8211;class &#8216;opera&#8217; windowfocus key &#8211;clearmodifiers ctrl+r xdotool windowactivate $id done]]></description>
			<content:encoded><![CDATA[<p>前提：LINUX系统、安装inotify-tools、xdotool、双显示器</p>
<p>作用：保存代码时，自动刷新浏览器，再不用按F5了！</p>
<p>inotifywait -mrq  &#8211;exclude &#8220;.svn&#8221;  -e close_write /data/www/source | while read line; do<br />
id=`xdotool getactivewindow | head -1`<br />
xdotool search &#8211;onlyvisible &#8211;class &#8216;chrome&#8217; windowfocus key &#8211;clearmodifiers ctrl+r<br />
#xdotool search &#8211;onlyvisible &#8211;class &#8216;firefox&#8217; windowfocus key &#8211;clearmodifiers ctrl+r<br />
#xdotool search &#8211;onlyvisible &#8211;class &#8216;opera&#8217; windowfocus key &#8211;clearmodifiers ctrl+r</p>
<p>xdotool windowactivate $id</p>
<p>done</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/529/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>replace into、insert ignore into与on duplicate key update</title>
		<link>http://blog.lyphp.com/archives/527</link>
		<comments>http://blog.lyphp.com/archives/527#comments</comments>
		<pubDate>Wed, 18 Apr 2012 09:34:30 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[WEB开发]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=527</guid>
		<description><![CDATA[对于唯一索引,插入重复项， insert into 会导致错误， insert ignor into不会， replace into删除已存在的记录再插入， on duplicate key update会更新已有记录。 INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1; 没有重复记录插入，如有重复记录，等同于 UPDATE table SET c=c+1 WHERE a=1;//假设a为主键或唯一索引]]></description>
			<content:encoded><![CDATA[<p>对于唯一索引,插入重复项，</p>
<p>insert into 会导致错误，</p>
<p>insert ignor into不会，</p>
<p>replace into删除已存在的记录再插入，</p>
<p>on duplicate key update会更新已有记录。<br />
INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1;</p>
<p>没有重复记录插入，如有重复记录，等同于</p>
<p>UPDATE table SET c=c+1 WHERE a=1;//假设a为主键或唯一索引</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/527/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>session_destroy和session_unset的区别</title>
		<link>http://blog.lyphp.com/archives/524</link>
		<comments>http://blog.lyphp.com/archives/524#comments</comments>
		<pubDate>Tue, 17 Apr 2012 09:12:05 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WEB开发]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=524</guid>
		<description><![CDATA[session_destory关闭session文件，清除session id，在本次请求完成前保留$_SESSION数组内容。 &#60;?php session_start(); $_SESSION['id']=1; echo session_id(); //t3b39d0521gpvbp2vikkikpb00 echo &#8216;&#60;br&#62;&#8217;; echo $_SESSION['id']; //1 echo &#8216;&#60;br&#62;&#8217;; session_destroy(); echo session_id(); //&#8221; echo &#8216;&#60;br&#62;&#8217;; echo $_SESSION['id']; //1 $_SESSION['id']=2; //再次请求时无此变量 ?&#62; session_unset清空session变量，保留session文件及session id。 &#60;?php session_start(); $_SESSION['id']=1; echo session_id(); //t3b39d0521gpvbp2vikkikpb00 echo &#8216;&#60;br&#62;&#8217;; echo $_SESSION['id']; //1 echo &#8216;&#60;br&#62;&#8217;; session_unset(); echo session_id(); //t3b39d0521gpvbp2vikkikpb00 echo &#8216;&#60;br&#62;&#8217;; echo $_SESSION['id']; // Notice: Undefined index: id $_SESSION['id']=2; [...]]]></description>
			<content:encoded><![CDATA[<p>session_destory关闭session文件，清除session id，在本次请求完成前保留$_SESSION数组内容。</p>
<p>&lt;?php</p>
<p>session_start();</p>
<p>$_SESSION['id']=1;</p>
<p>echo session_id(); //t3b39d0521gpvbp2vikkikpb00</p>
<p>echo &#8216;&lt;br&gt;&#8217;;</p>
<p>echo $_SESSION['id']; //1</p>
<p>echo &#8216;&lt;br&gt;&#8217;;</p>
<p>session_destroy();</p>
<p>echo session_id(); //&#8221;</p>
<p>echo &#8216;&lt;br&gt;&#8217;;</p>
<p>echo $_SESSION['id']; //1</p>
<p>$_SESSION['id']=2; //再次请求时无此变量</p>
<p>?&gt;</p>
<p>session_unset清空session变量，保留session文件及session id。</p>
<p>&lt;?php</p>
<p>session_start();</p>
<p>$_SESSION['id']=1;</p>
<p>echo session_id(); //t3b39d0521gpvbp2vikkikpb00</p>
<p>echo &#8216;&lt;br&gt;&#8217;;</p>
<p>echo $_SESSION['id']; //1</p>
<p>echo &#8216;&lt;br&gt;&#8217;;</p>
<p>session_unset();</p>
<p>echo session_id(); //t3b39d0521gpvbp2vikkikpb00</p>
<p>echo &#8216;&lt;br&gt;&#8217;;</p>
<p>echo $_SESSION['id']; // Notice: Undefined index: id</p>
<p>$_SESSION['id']=2; //再次请求时id=2；</p>
<p>?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/524/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php循环优化</title>
		<link>http://blog.lyphp.com/archives/520</link>
		<comments>http://blog.lyphp.com/archives/520#comments</comments>
		<pubDate>Fri, 06 Apr 2012 04:13:55 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WEB开发]]></category>
		<category><![CDATA[设计]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[优化]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=520</guid>
		<description><![CDATA[通常要循环处理一个数组的时候，是这样写的 $arr=range(1,10000); foreach($arr as $k=&#62;$v) { $arr[$k]++; } 如果要优化一个循环，最常见的方法就是减少循环的次数。比如，使用DUFF装置。它以创建者Tom Duff的名字命名，最早在C语言中试用，基本概念是通过计算迭代次数是否为8的倍数，将一个循环展开成一系列的语句。经Andrew B. King优化后，代码如下： $arr=range(1,10000); $iterations=floor(count($arr)/8); $leftover=count($arr)%8; $i=0; if($leftover&#62;0) { do { $arr[$i++]++; }while(--$leftover&#62;0); } do { $arr[$i++]++; $arr[$i++]++; $arr[$i++]++; $arr[$i++]++; $arr[$i++]++; $arr[$i++]++; $arr[$i++]++; $arr[$i++]++; }while(--$iterations&#62;0); &#160; 看上去代码更多，但是执行速度更快。上面2个代码执行时间相差60%。 在可读性和效率之间如何取舍，则是另外一个问题。]]></description>
			<content:encoded><![CDATA[<p>通常要循环处理一个数组的时候，是这样写的</p>
<p><code> $arr=range(1,10000);<br />
foreach($arr as $k=&gt;$v)<br />
{<br />
$arr[$k]++;<br />
}</code></p>
<p>如果要优化一个循环，最常见的方法就是减少循环的次数。比如，使用DUFF装置。它以创建者Tom Duff的名字命名，最早在C语言中试用，基本概念是通过计算迭代次数是否为8的倍数，将一个循环展开成一系列的语句。经Andrew B. King优化后，代码如下：<br />
<code><br />
$arr=range(1,10000);<br />
$iterations=floor(count($arr)/8);<br />
$leftover=count($arr)%8;<br />
$i=0;<br />
if($leftover&gt;0)<br />
{<br />
do<br />
{<br />
$arr[$i++]++;<br />
}while(--$leftover&gt;0);<br />
}<br />
do<br />
{<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
$arr[$i++]++;<br />
}while(--$iterations&gt;0);</code></p>
<p>&nbsp;</p>
<p>看上去代码更多，但是执行速度更快。上面2个代码执行时间相差60%。</p>
<p>在可读性和效率之间如何取舍，则是另外一个问题。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/520/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jquery让元素居中</title>
		<link>http://blog.lyphp.com/archives/514</link>
		<comments>http://blog.lyphp.com/archives/514#comments</comments>
		<pubDate>Mon, 26 Mar 2012 08:24:44 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[WEB开发]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript jquery]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=514</guid>
		<description><![CDATA[定义一个center方法 jQuery.fn.center = function(parent) { if (parent) { parent = this.parent(); } else { parent = window; } this.css({ &#8220;position&#8221;: &#8221;absolute&#8221;, &#8220;top&#8221;: ((($(parent).height() - this.outerHeight()) / 2) + $(parent).scrollTop() + &#8221;px&#8221;), &#8220;left&#8221;: ((($(parent).width() - this.outerWidth()) / 2) + $(parent).scrollLeft() + &#8221;px&#8221;) }); return this; } &#160; 然后你就可以 $(element).center(true); //父元素中居中 $(element).center(false); //屏幕居中 来源 http://stackoverflow.com/questions/210717/using-jquery-to-center-a-div-on-the-screen &#160;]]></description>
			<content:encoded><![CDATA[<p>定义一个center方法</p>
<p>jQuery.fn.center = function(parent) {<br />
if (parent) {<br />
parent = this.parent();<br />
} else {<br />
parent = window;<br />
}<br />
this.css({<br />
&#8220;position&#8221;: &#8221;absolute&#8221;,<br />
&#8220;top&#8221;: ((($(parent).height() - this.outerHeight()) / 2) + $(parent).scrollTop() + &#8221;px&#8221;),<br />
&#8220;left&#8221;: ((($(parent).width() - this.outerWidth()) / 2) + $(parent).scrollLeft() + &#8221;px&#8221;)<br />
});<br />
return this;<br />
}</p>
<p>&nbsp;</p>
<p>然后你就可以</p>
<pre><code>$(element).center(true); //父元素中居中</code></pre>
<pre><code>$(element).center(false); //屏幕居中</code></pre>
<pre></pre>
<pre></pre>
<pre></pre>
<pre></pre>
<pre><span style="font-family: monospace;">来源 <a href="http://stackoverflow.com/questions/210717/using-jquery-to-center-a-div-on-the-screen">http://stackoverflow.com/questions/210717/using-jquery-to-center-a-div-on-the-screen</a></span></pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/514/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>图像识别验证码</title>
		<link>http://blog.lyphp.com/archives/510</link>
		<comments>http://blog.lyphp.com/archives/510#comments</comments>
		<pubDate>Wed, 04 Jan 2012 04:26:06 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=510</guid>
		<description><![CDATA[在原来的基础上稍加修改就行了 demo 纯娱乐^^]]></description>
			<content:encoded><![CDATA[<p>在原来的基础上稍加修改就行了</p>
<p><a href="http://www.lyphp.com/captcha/adv/"><img class="alignnone size-full wp-image-511" title="captcha_adv" src="http://blog.lyphp.com/wp-content/uploads/2012/01/captcha_adv.png" alt="" width="417" height="126" /></a></p>
<p><a title="demo" href="http://www.lyphp.com/captcha/adv/" target="_blank">demo</a></p>
<p>纯娱乐^^</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/510/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SAE高级开发者证书入手！</title>
		<link>http://blog.lyphp.com/archives/505</link>
		<comments>http://blog.lyphp.com/archives/505#comments</comments>
		<pubDate>Tue, 20 Dec 2011 02:10:38 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=505</guid>
		<description><![CDATA[貌似也没啥用&#8230;.装裱，以资纪念&#8230;]]></description>
			<content:encoded><![CDATA[<p>貌似也没啥用&#8230;.装裱，以资纪念&#8230;</p>
<p><a href="http://blog.lyphp.com/wp-content/uploads/2011/12/sina.jpg"><img class="alignnone size-full wp-image-506" title="sina" src="http://blog.lyphp.com/wp-content/uploads/2011/12/sina.jpg" alt="" width="440" height="627" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/505/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>点点图片验证码，秒杀一切注册机！有木有！</title>
		<link>http://blog.lyphp.com/archives/500</link>
		<comments>http://blog.lyphp.com/archives/500#comments</comments>
		<pubDate>Mon, 19 Dec 2011 03:44:00 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WEB开发]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=500</guid>
		<description><![CDATA[不解释，有demo有图有真相，一切都有！ demo 下载 captcha.zip]]></description>
			<content:encoded><![CDATA[<p>不解释，有demo有图有真相，一切都有！</p>
<p><a href="http://blog.lyphp.com/wp-content/uploads/2011/12/Screenshot.png"><img class="alignnone size-full wp-image-501" title="Screenshot" src="http://blog.lyphp.com/wp-content/uploads/2011/12/Screenshot.png" alt="" width="344" height="98" /></a></p>
<p><a href="http://www.lyphp.com/captcha/">demo</a></p>
<p>下载 <a href="http://blog.lyphp.com/wp-content/uploads/2011/12/captcha.zip">captcha.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/500/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>过滤html标签，只保留指定属性</title>
		<link>http://blog.lyphp.com/archives/497</link>
		<comments>http://blog.lyphp.com/archives/497#comments</comments>
		<pubDate>Mon, 28 Nov 2011 03:19:21 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WEB开发]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=497</guid>
		<description><![CDATA[function parse($m) { return call_user_func("parse{$m[1]}",$m[3]); } function parsea($str,$attr=array('href')) { return '&#60;a '.parseattr($str,$attr).'&#62;'; } function parsep($str,$attr=array('align','id')) { return '&#60;p '.parseattr($str,$attr).'&#62;'; } function parseattr($str,$attr=array()) { if(empty($attr))return ''; $attrs=explode(' ', $str); foreach ($attrs as $k=&#62;$v) { foreach ($attr as $a) { if(strtolower(substr($v, 0,strlen($a)).'=')===strtolower($a.'=')) { continue 2; } } unset($attrs[$k]); } return implode(' ', $attrs); } function myreplace($str) { [...]]]></description>
			<content:encoded><![CDATA[<pre>
function parse($m)
{
  return call_user_func("parse{$m[1]}",$m[3]);
}
function parsea($str,$attr=array('href'))
{
  return '&lt;a '.parseattr($str,$attr).'&gt;';
}
function parsep($str,$attr=array('align','id'))
{
  return '&lt;p '.parseattr($str,$attr).'&gt;';
}
function parseattr($str,$attr=array())
{
  if(empty($attr))return '';
  $attrs=explode(' ', $str);
  foreach ($attrs as $k=&gt;$v)
  {
    foreach ($attr as $a)
    {
      if(strtolower(substr($v, 0,strlen($a)).'=')===strtolower($a.'='))
      {
        continue 2;
      }
    }
    unset($attrs[$k]);
  }
  return implode(' ', $attrs);
}
function myreplace($str)
{
  $reg='/&lt;(p|a)(\s+)(.*?[^&gt;])&gt;/is';
  return (preg_replace_callback($reg,'parse',$str));
}

$str='&lt;p align="center" class="asd" id="qwe"&gt;adf&lt;a href="#" class="asd" id="qwe" align="center"&gt;123&lt;/a&gt;&lt;div id="iii" style="color:red"&gt;4&lt;p id="ww"&gt;5&lt;/p&gt;6&lt;/div&gt;&lt;/p&gt;';
echo myreplace(strip_tags($str,'&lt;p&gt;&lt;a&gt;'));</pre>
<pre>//&lt;p align="center" id="qwe"&gt;adf&lt;a href="<a href="http://www.faxiandi.com/#" target="_blank">#</a>"&gt;123&lt;/a&gt;4&lt;p id="ww"&gt;5&lt;/p&gt;6&lt;/p&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/497/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>修改host访问Google Plus</title>
		<link>http://blog.lyphp.com/archives/493</link>
		<comments>http://blog.lyphp.com/archives/493#comments</comments>
		<pubDate>Fri, 28 Oct 2011 06:26:37 +0000</pubDate>
		<dc:creator>lyndon</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.lyphp.com/?p=493</guid>
		<description><![CDATA[至于加哪里，你懂的，这是生活在此地的基本生活技能。 74.125.224.97 plus.google.com 74.125.224.105 plus.google.com 74.125.224.98 plus.google.com 74.125.224.104 plus.google.com 74.125.224.101 plus.google.com 74.125.224.109 plus.google.com 74.125.224.96 plus.google.com 74.125.224.106 plus.google.com 74.125.224.100 plus.google.com 74.125.224.110 plus.google.com 74.125.224.102 plus.google.com 74.125.224.107 plus.google.com 74.125.224.99 plus.google.com 74.125.224.108 plus.google.com 74.125.224.111 plus.google.com 74.125.224.103 plus.google.com 209.85.175.132 images1-focus-opensocial.googleusercontent.com 209.85.175.132 images2-focus-opensocia2.googleusercontent.com 209.85.175.132 s2.googleusercontent.com 209.85.143.132 lh1.googleusercontent.com 209.85.175.132 lh1.googleusercontent.com 209.85.143.132 lh2.googleusercontent.com 209.85.175.132 lh2.googleusercontent.com 209.85.143.132 lh3.googleusercontent.com 209.85.175.132 lh3.googleusercontent.com 209.85.175.132 lh4.googleusercontent.com 209.85.143.132 lh4.googleusercontent.com [...]]]></description>
			<content:encoded><![CDATA[<p>至于加哪里，你懂的，这是生活在此地的基本生活技能。</p>
<p>74.125.224.97 plus.google.com<br />
74.125.224.105 plus.google.com<br />
74.125.224.98 plus.google.com<br />
74.125.224.104 plus.google.com<br />
74.125.224.101 plus.google.com<br />
74.125.224.109 plus.google.com<br />
74.125.224.96 plus.google.com<br />
74.125.224.106 plus.google.com<br />
74.125.224.100 plus.google.com<br />
74.125.224.110 plus.google.com<br />
74.125.224.102 plus.google.com<br />
74.125.224.107 plus.google.com<br />
74.125.224.99 plus.google.com<br />
74.125.224.108 plus.google.com<br />
74.125.224.111 plus.google.com<br />
74.125.224.103 plus.google.com<br />
209.85.175.132 images1-focus-opensocial.googleusercontent.com<br />
209.85.175.132 images2-focus-opensocia2.googleusercontent.com<br />
209.85.175.132 s2.googleusercontent.com<br />
209.85.143.132 lh1.googleusercontent.com<br />
209.85.175.132 lh1.googleusercontent.com<br />
209.85.143.132 lh2.googleusercontent.com<br />
209.85.175.132 lh2.googleusercontent.com<br />
209.85.143.132 lh3.googleusercontent.com<br />
209.85.175.132 lh3.googleusercontent.com<br />
209.85.175.132 lh4.googleusercontent.com<br />
209.85.143.132 lh4.googleusercontent.com<br />
209.85.143.132 lh5.googleusercontent.com<br />
209.85.175.132 lh5.googleusercontent.com<br />
209.85.143.132 lh6.googleusercontent.com<br />
209.85.175.132 lh6.googleusercontent.com<br />
203.208.46.29 picadaweb.google.com<br />
203.208.46.29 lh1.ggpht.com<br />
203.208.46.29 lh2.ggpht.com<br />
203.208.46.29 lh3.ggpht.com<br />
203.208.46.29 lh4.ggpht.com<br />
203.208.46.29 lh5.ggpht.com<br />
203.208.46.29 lh6.ggpht.com<br />
203.208.46.29 lh6.googleusercontent.com<br />
203.208.46.29 lh5.googleusercontent.com<br />
203.208.46.29 lh4.googleusercontent.com<br />
203.208.46.29 lh3.googleusercontent.com<br />
203.208.46.29 lh2.googleusercontent.com<br />
203.208.46.29 lh1.googleusercontent.com<br />
203.208.46.29 plus.google.com<br />
203.208.46.29 talkgadget.google.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lyphp.com/archives/493/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

