<?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>Comments for Computer, Electron and Technology</title>
	<atom:link href="http://www.donevii.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.donevii.com</link>
	<description>DoneVII CET &#38; CPPLITE</description>
	<lastBuildDate>Mon, 15 Jun 2009 08:37:54 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on The InfoTech 100 by KattyBlackyard</title>
		<link>http://www.donevii.com/post/832.html/comment-page-1#comment-416</link>
		<dc:creator>KattyBlackyard</dc:creator>
		<pubDate>Mon, 15 Jun 2009 08:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?p=832#comment-416</guid>
		<description>The article is ver good. Write please more</description>
		<content:encoded><![CDATA[<p>The article is ver good. Write please more</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 命令行编译工具NMAKE by Kalebarkab</title>
		<link>http://www.donevii.com/post/842.html/comment-page-1#comment-415</link>
		<dc:creator>Kalebarkab</dc:creator>
		<pubDate>Wed, 10 Jun 2009 02:23:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?p=842#comment-415</guid>
		<description>I want to find good pop music. Help me please.</description>
		<content:encoded><![CDATA[<p>I want to find good pop music. Help me please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 关于我们 by Tom</title>
		<link>http://www.donevii.com/about-2/comment-page-1#comment-354</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 22 May 2009 14:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?page_id=345#comment-354</guid>
		<description>新皮肤很清爽,很符合这个季节.</description>
		<content:encoded><![CDATA[<p>新皮肤很清爽,很符合这个季节.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 常用的HR相关英文词汇 by gavinkwoe</title>
		<link>http://www.donevii.com/post/73.html/comment-page-1#comment-349</link>
		<dc:creator>gavinkwoe</dc:creator>
		<pubDate>Sun, 17 May 2009 07:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?p=73#comment-349</guid>
		<description>:)</description>
		<content:encoded><![CDATA[<p>:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 常用的HR相关英文词汇 by Symbian Blogger</title>
		<link>http://www.donevii.com/post/73.html/comment-page-1#comment-346</link>
		<dc:creator>Symbian Blogger</dc:creator>
		<pubDate>Sat, 16 May 2009 21:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?p=73#comment-346</guid>
		<description>I found your blog on google and read a few of your other posts. I just added you to my Google News Reader. Keep up the good work. Look forward to reading more from you in the future.</description>
		<content:encoded><![CDATA[<p>I found your blog on google and read a few of your other posts. I just added you to my Google News Reader. Keep up the good work. Look forward to reading more from you in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP:set_error_handler &#8230;&#8230;need more by diyism</title>
		<link>http://www.donevii.com/post/350.html/comment-page-1#comment-329</link>
		<dc:creator>diyism</dc:creator>
		<pubDate>Sun, 10 May 2009 04:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?p=350#comment-329</guid>
		<description>我是这么干的:

php中的try&#160;{}&#160;catch&#160;{}或set_error_handler()都捕获不了fatal&#160;error,&#160;必然导致程序终止,
虽然无法让程序继续执行,&#160;但是仍然可以输出致命错误发生前的程序状态:
$ob_before=ob_list_handlers();
if&#160;(count($ob_before)&gt;0)
&#160;&#160;&#160;{$doc_before=ob_get_contents();
&#160;&#160;&#160;&#160;ob_end_clean();
&#160;&#160;&#160;}
if&#160;(function_exists(&#039;handle_fatal&#039;)==false)
&#160;&#160;&#160;{function&#160;handle_fatal($output_try)
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{if&#160;(preg_match(&quot;/&lt;b&gt;(.+?)\serror&lt;\/b&gt;:(.*?)&lt;br/i&quot;,&#160;$output_try,&#160;$match))
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{return&#160;$GLOBALS[&#039;status&#039;];
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;else
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{return&#160;$output_try;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;}
ob_start(&#039;handle_fatal&#039;);
$GLOBALS[&#039;status&#039;]=&#039;status&#039;;

/*可能发生致命错误的地方:begin*/
echo&#160;$this-&gt;kk;
//echo&#160;1/0;
/*可能发生致命错误的地方:end*/

$doc=ob_get_contents();
ob_end_clean();
if&#160;(count($ob_before)&gt;0)
&#160;&#160;&#160;{ob_start($ob_before[0]);
&#160;&#160;&#160;&#160;echo&#160;$doc_before;
&#160;&#160;&#160;}
echo&#160;$doc;</description>
		<content:encoded><![CDATA[<p>我是这么干的:</p>
<p>php中的try&nbsp;{}&nbsp;catch&nbsp;{}或set_error_handler()都捕获不了fatal&nbsp;error,&nbsp;必然导致程序终止,<br />
虽然无法让程序继续执行,&nbsp;但是仍然可以输出致命错误发生前的程序状态:<br />
$ob_before=ob_list_handlers();<br />
if&nbsp;(count($ob_before)&gt;0)<br />
&nbsp;&nbsp;&nbsp;{$doc_before=ob_get_contents();<br />
&nbsp;&nbsp;&nbsp;&nbsp;ob_end_clean();<br />
&nbsp;&nbsp;&nbsp;}<br />
if&nbsp;(function_exists(&#8217;handle_fatal&#8217;)==false)<br />
&nbsp;&nbsp;&nbsp;{function&nbsp;handle_fatal($output_try)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{if&nbsp;(preg_match(&#8221;/&lt;b&gt;(.+?)\serror&lt;\/b&gt;:(.*?)&lt;br/i&#8221;,&nbsp;$output_try,&nbsp;$match))<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{return&nbsp;$GLOBALS['status'];<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{return&nbsp;$output_try;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;}<br />
ob_start(&#8217;handle_fatal&#8217;);<br />
$GLOBALS['status']=&#8217;status&#8217;;</p>
<p>/*可能发生致命错误的地方:begin*/<br />
echo&nbsp;$this-&gt;kk;<br />
//echo&nbsp;1/0;<br />
/*可能发生致命错误的地方:end*/</p>
<p>$doc=ob_get_contents();<br />
ob_end_clean();<br />
if&nbsp;(count($ob_before)&gt;0)<br />
&nbsp;&nbsp;&nbsp;{ob_start($ob_before[0]);<br />
&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;$doc_before;<br />
&nbsp;&nbsp;&nbsp;}<br />
echo&nbsp;$doc;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 穷人为什么穷？富人为什么富？ by scalarize</title>
		<link>http://www.donevii.com/post/806.html/comment-page-1#comment-328</link>
		<dc:creator>scalarize</dc:creator>
		<pubDate>Fri, 08 May 2009 05:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/post/806.html#comment-328</guid>
		<description>肤浅</description>
		<content:encoded><![CDATA[<p>肤浅</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 穷人为什么穷？富人为什么富？ by shell</title>
		<link>http://www.donevii.com/post/806.html/comment-page-1#comment-327</link>
		<dc:creator>shell</dc:creator>
		<pubDate>Fri, 08 May 2009 04:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/post/806.html#comment-327</guid>
		<description>正循環 : 富人依照正循環的思考方式

富人會想辦法創造出更多持續性收入
要點:建立持續性收入系統, 複製成功模式......

負循環 : 窮人依照負循環的思考方式

窮人則將就生活, 僅靠勞力與生命賺錢</description>
		<content:encoded><![CDATA[<p>正循環 : 富人依照正循環的思考方式</p>
<p>富人會想辦法創造出更多持續性收入<br />
要點:建立持續性收入系統, 複製成功模式&#8230;&#8230;</p>
<p>負循環 : 窮人依照負循環的思考方式</p>
<p>窮人則將就生活, 僅靠勞力與生命賺錢</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 穷人为什么穷？富人为什么富？ by shell</title>
		<link>http://www.donevii.com/post/806.html/comment-page-1#comment-326</link>
		<dc:creator>shell</dc:creator>
		<pubDate>Fri, 08 May 2009 04:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/post/806.html#comment-326</guid>
		<description>你說 得對, 歡迎加入我們~

富爸爸財富達人 , web2.0創富 , 網絡行銷

http://www.facebook.com/groups.php?ref=sb#/group.php?gid=79112055994</description>
		<content:encoded><![CDATA[<p>你說 得對, 歡迎加入我們~</p>
<p>富爸爸財富達人 , web2.0創富 , 網絡行銷</p>
<p><a href="http://www.facebook.com/groups.php?ref=sb#/group.php?gid=79112055994" rel="nofollow">http://www.facebook.com/groups.php?ref=sb#/group.php?gid=79112055994</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP On Rails by kuhanzhu</title>
		<link>http://www.donevii.com/post/240.html/comment-page-1#comment-321</link>
		<dc:creator>kuhanzhu</dc:creator>
		<pubDate>Wed, 22 Apr 2009 14:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.donevii.com/?p=240#comment-321</guid>
		<description>从根本上来讲是两回事。</description>
		<content:encoded><![CDATA[<p>从根本上来讲是两回事。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
