<?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 on: Zend PHP5 certification Exam study review 8: OOP In PHP 5</title>
	<atom:link href="http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/feed/langswitch_lang/en/" rel="self" type="application/rss+xml" />
	<link>http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/</link>
	<description>PHP, CSS, Ajax, webdevelop and everything else.</description>
	<lastBuildDate>Sat, 24 Jul 2010 06:44:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Falta pouco para a ZCE &#171; Igor Escobar // Blog</title>
		<link>http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/comment-page-1/#comment-3104</link>
		<dc:creator>Falta pouco para a ZCE &#171; Igor Escobar // Blog</dc:creator>
		<pubDate>Mon, 05 Jul 2010 05:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/#comment-3104</guid>
		<description>[...] Object Oriented Programming in PHP 5 [...]</description>
		<content:encoded><![CDATA[<p>[...] Object Oriented Programming in PHP 5 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neriodavid</title>
		<link>http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/comment-page-1/#comment-3085</link>
		<dc:creator>neriodavid</dc:creator>
		<pubDate>Sat, 22 May 2010 05:32:35 +0000</pubDate>
		<guid isPermaLink="false">http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/#comment-3085</guid>
		<description>the answer is 1.</description>
		<content:encoded><![CDATA[<p>the answer is 1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jo</title>
		<link>http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/comment-page-1/#comment-3077</link>
		<dc:creator>jo</dc:creator>
		<pubDate>Tue, 20 Apr 2010 17:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/#comment-3077</guid>
		<description>Hi admin,

I have a question, please give me a help,

Q: The __method is automatically called when the object is created, while the  __ method is automatically when the object is destroyed.
A: 
1.__construct(), __destruct()
2., __destroy()
3., ~
4.__startup(), _ shutdown()
5.__construct(), __destroy()

my answer is 5.. is it correct?</description>
		<content:encoded><![CDATA[<p>Hi admin,</p>
<p>I have a question, please give me a help,</p>
<p>Q: The __method is automatically called when the object is created, while the  __ method is automatically when the object is destroyed.<br />
A:<br />
1.__construct(), __destruct()<br />
2., __destroy()<br />
3., ~<br />
4.__startup(), _ shutdown()<br />
5.__construct(), __destroy()</p>
<p>my answer is 5.. is it correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/comment-page-1/#comment-1872</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 13 Jun 2009 03:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/#comment-1872</guid>
		<description>Oops, you are right. Yes, it is obvious that the &quot;This is never displayed&quot; is never displayed! :)</description>
		<content:encoded><![CDATA[<p>Oops, you are right. Yes, it is obvious that the &#8220;This is never displayed&#8221; is never displayed! <img src='http://readtheweb.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry Lu</title>
		<link>http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/comment-page-1/#comment-1866</link>
		<dc:creator>Henry Lu</dc:creator>
		<pubDate>Fri, 12 Jun 2009 22:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://readtheweb.info/2008/01/18/zend-php5-certification-exam-study-review-8-oop-in-php-5/#comment-1866</guid>
		<description>Hi admin,
Thank you for your post. It is a good article for ZCE review.

I just have a question to ask you. In the following code you mentioned, why it will never output You caught me? I think it shouldn&#039;t output &#039;This is never displayed&#039;. Could you tell me the reason if I am wrong.

function handleUncaughtException($e)
{echo $e-&gt;getMessage();
}
set_exception_handler(”handleUncaughtException”);
throw new Exception(”You caught me!”);
echo “This is never displayed”;</description>
		<content:encoded><![CDATA[<p>Hi admin,<br />
Thank you for your post. It is a good article for ZCE review.</p>
<p>I just have a question to ask you. In the following code you mentioned, why it will never output You caught me? I think it shouldn&#8217;t output &#8216;This is never displayed&#8217;. Could you tell me the reason if I am wrong.</p>
<p>function handleUncaughtException($e)<br />
{echo $e-&gt;getMessage();<br />
}<br />
set_exception_handler(”handleUncaughtException”);<br />
throw new Exception(”You caught me!”);<br />
echo “This is never displayed”;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
