<?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"
	>
<channel>
	<title>Comments on: Pimpin Harry&#8217;s pretty bluescreen</title>
	<atom:link href="http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/</link>
	<description>News, opinion, and fresh thinking for web developers and designers. The official podcast of sitepoint.com.</description>
	<pubDate>Thu, 04 Dec 2008 02:49:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Passh Reloaded</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-352265</link>
		<dc:creator>Passh Reloaded</dc:creator>
		<pubDate>Mon, 27 Aug 2007 00:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-352265</guid>
		<description>Can you please reupload the two files for this post?

Thanks</description>
		<content:encoded><![CDATA[<p>Can you please reupload the two files for this post?</p>
<p>Thanks</p>]]></content:encoded>
	</item>
	<item>
		<title>By: lsolesen</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-213285</link>
		<dc:creator>lsolesen</dc:creator>
		<pubDate>Wed, 28 Mar 2007 06:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-213285</guid>
		<description>Nevermind, found the svn. Though it does not seem as the code is kept up to date? What is the license on the code?</description>
		<content:encoded><![CDATA[<p>Nevermind, found the svn. Though it does not seem as the code is kept up to date? What is the license on the code?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Maarten Manders</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-57195</link>
		<dc:creator>Maarten Manders</dc:creator>
		<pubDate>Wed, 20 Sep 2006 12:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-57195</guid>
		<description>I'm sorry, I thought that I'd committed the fix:

&lt;pre&gt;
&lt;code class='html'&gt;
			/**
			 * Check if error needs to be handled.
			 * Note: error level 0 means we're having a shut-up operator (@)
			 */
			if(($errno &#38; ErrorConfig::LEVEL) != $errno &#124;&#124; 0 === error_reporting()) {
				return;
			}
&lt;/code&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry, I thought that I&#8217;d committed the fix:</p>
<pre>
<code class='html'>
			/**
			 * Check if error needs to be handled.
			 * Note: error level 0 means we're having a shut-up operator (@)
			 */
			if(($errno &amp; ErrorConfig::LEVEL) != $errno || 0 === error_reporting()) {
				return;
			}
</code>
</pre>]]></content:encoded>
	</item>
	<item>
		<title>By: melitonas</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-57147</link>
		<dc:creator>melitonas</dc:creator>
		<pubDate>Wed, 20 Sep 2006 10:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-57147</guid>
		<description>But it does not discardes at all...
I have added these lines:
&lt;code&gt;
public static function handleError($errno, $errstr, $errfile, $errline, $errcontext) {
			/* Check if error needs to be handled */
			if(($errno &#38; ErrorConfig::LEVEL) != $errno) {
				return;
			}
			&lt;strong&gt;if (error_reporting() == 0) {
				// print "(silenced) ";
				return;
			}&lt;/strong&gt;
			/* Error types */
			$error_types = array(
				1 =&#62; 'ERROR',
				2 =&#62; 'WARNING',
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>But it does not discardes at all&#8230;<br />
I have added these lines:<br />
<code>
public static function handleError($errno, $errstr, $errfile, $errline, $errcontext) {
			/* Check if error needs to be handled */
			if(($errno &amp; ErrorConfig::LEVEL) != $errno) {
				return;
			}
			<strong>if (error_reporting() == 0) {
				// print "(silenced) ";
				return;
			}</strong>
			/* Error types */
			$error_types = array(
				1 =&gt; 'ERROR',
				2 =&gt; 'WARNING',
</code></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Maarten Manders</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-57144</link>
		<dc:creator>Maarten Manders</dc:creator>
		<pubDate>Wed, 20 Sep 2006 09:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-57144</guid>
		<description>Yes, it will be called, but the error will be discarded.</description>
		<content:encoded><![CDATA[<p>Yes, it will be called, but the error will be discarded.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: melitonas</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-57139</link>
		<dc:creator>melitonas</dc:creator>
		<pubDate>Wed, 20 Sep 2006 09:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-57139</guid>
		<description>Will this Custom error handler be called regardless of the silencing operator??</description>
		<content:encoded><![CDATA[<p>Will this Custom error handler be called regardless of the silencing operator??</p>]]></content:encoded>
	</item>
	<item>
		<title>By: busy</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-50469</link>
		<dc:creator>busy</dc:creator>
		<pubDate>Sat, 02 Sep 2006 19:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-50469</guid>
		<description>&lt;blockquote&gt;I dont see any reason to code in php 4 at all anymore.&lt;/blockquote&gt;
Some hosts still don't support php5 yet. I use hostgator and they're still stuck on 4. Which sucks because I have 5 on my development server.</description>
		<content:encoded><![CDATA[<blockquote><p>I dont see any reason to code in php 4 at all anymore.</p></blockquote>
<p>Some hosts still don&#8217;t support php5 yet. I use hostgator and they&#8217;re still stuck on 4. Which sucks because I have 5 on my development server.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mwolfe</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-46882</link>
		<dc:creator>mwolfe</dc:creator>
		<pubDate>Mon, 21 Aug 2006 15:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-46882</guid>
		<description>&lt;blockquote&gt;How long ago did PHP 5 come out…&lt;/blockquote&gt;

must have been 2 years ago or so.. most hosts support it now (at least as an option), you might have to name your files .php5 or something like that.. 
I dont see any reason to code in php 4 at all anymore.</description>
		<content:encoded><![CDATA[<blockquote><p>How long ago did PHP 5 come out…</p></blockquote>
<p>must have been 2 years ago or so.. most hosts support it now (at least as an option), you might have to name your files .php5 or something like that..<br />
I dont see any reason to code in php 4 at all anymore.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: TheLunchBox</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-46458</link>
		<dc:creator>TheLunchBox</dc:creator>
		<pubDate>Fri, 18 Aug 2006 19:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-46458</guid>
		<description>How long ago did PHP 5 come out...</description>
		<content:encoded><![CDATA[<p>How long ago did PHP 5 come out&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: brossiekoppie</title>
		<link>http://www.sitepoint.com/blogs/2006/08/12/pimpin-harrys-pretty-bluescreen/#comment-45603</link>
		<dc:creator>brossiekoppie</dc:creator>
		<pubDate>Mon, 14 Aug 2006 13:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1677#comment-45603</guid>
		<description>&lt;blockquote&gt;
set_exception_handler

(&lt;strong&gt;PHP 5&lt;/strong&gt;)
set_exception_handler --  Sets a user-defined exception handler function 
&lt;/blockquote&gt;

Porting this to PHP4 would be really difficult ;)</description>
		<content:encoded><![CDATA[<blockquote><p>
set_exception_handler</p>
<p>(<strong>PHP 5</strong>)<br />
set_exception_handler &#8212;  Sets a user-defined exception handler function
</p></blockquote>
<p>Porting this to PHP4 would be really difficult ;)</p>]]></content:encoded>
	</item>
</channel>
</rss>
