<?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: Core PHP Programming 3/E Errata</title>
	<atom:link href="http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leonatkinson.com</link>
	<description>There is no duty that is not accepted.</description>
	<lastBuildDate>Fri, 27 Aug 2010 01:14:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jim Wright</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-73399</link>
		<dc:creator>Jim Wright</dc:creator>
		<pubDate>Thu, 02 Jul 2009 06:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-73399</guid>
		<description>chapter 2, page 48 - add 3 and 5, the result is 8 (not 15)</description>
		<content:encoded><![CDATA[<p>chapter 2, page 48 &#8211; add 3 and 5, the result is 8 (not 15)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John T. Bagwell Jr.</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-66397</link>
		<dc:creator>John T. Bagwell Jr.</dc:creator>
		<pubDate>Sat, 04 Oct 2008 19:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-66397</guid>
		<description>Three errors, not noted in your errata for Core PHP 3 -
(1) pg 369 - typo - middle page - &quot;coverts&quot; s/b &quot;converts.&quot;
(2) pg 1059 typo - &quot;file_exits&quot; s/b &quot;file_exists.&quot;
(3) pg 106 listing 6.1 - the constructor refers to &quot;$this-&gt;accesses++;&quot; but accesses is not a property. Add $accesses to the private properties.

VERY useful book!</description>
		<content:encoded><![CDATA[<p>Three errors, not noted in your errata for Core PHP 3 -<br />
(1) pg 369 &#8211; typo &#8211; middle page &#8211; &#8220;coverts&#8221; s/b &#8220;converts.&#8221;<br />
(2) pg 1059 typo &#8211; &#8220;file_exits&#8221; s/b &#8220;file_exists.&#8221;<br />
(3) pg 106 listing 6.1 &#8211; the constructor refers to &#8220;$this-&gt;accesses++;&#8221; but accesses is not a property. Add $accesses to the private properties.</p>
<p>VERY useful book!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas A. Gay, II</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-64446</link>
		<dc:creator>Thomas A. Gay, II</dc:creator>
		<pubDate>Sun, 27 Jul 2008 18:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-64446</guid>
		<description>Page 424 indicates that the function:

array str_word_count(string text, integer mode)

returns an associative array in which the words are keys and the values are the positions.  However, as illustrated in Figure 12.2, the associative array returned actually uses the positions as the keys and the words as the values.</description>
		<content:encoded><![CDATA[<p>Page 424 indicates that the function:</p>
<p>array str_word_count(string text, integer mode)</p>
<p>returns an associative array in which the words are keys and the values are the positions.  However, as illustrated in Figure 12.2, the associative array returned actually uses the positions as the keys and the words as the values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas A. Gay, II</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-64350</link>
		<dc:creator>Thomas A. Gay, II</dc:creator>
		<pubDate>Wed, 23 Jul 2008 22:35:21 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-64350</guid>
		<description>Listing 9.27on page223 does not function correctly on a Windows XP system with PHP 5.0 installed on an Apache 2.2 as a module.  The problem is that the value of PHP_OS is &quot;WINNT&quot;.  Thus the correct fix or statement for line 4 should be:

if(eregi(&quot;winnt&quot;, PHP_OS))

or, better yet:

if(eregi(&quot;win&quot;, PHP_OS))

to satisfy either case and assuming the original line:
 ( if(eregi(&quot;windows&quot;, PHP_OS))

works for other versions or configurations.</description>
		<content:encoded><![CDATA[<p>Listing 9.27on page223 does not function correctly on a Windows XP system with PHP 5.0 installed on an Apache 2.2 as a module.  The problem is that the value of PHP_OS is &#8220;WINNT&#8221;.  Thus the correct fix or statement for line 4 should be:</p>
<p>if(eregi(&#8220;winnt&#8221;, PHP_OS))</p>
<p>or, better yet:</p>
<p>if(eregi(&#8220;win&#8221;, PHP_OS))</p>
<p>to satisfy either case and assuming the original line:<br />
 ( if(eregi(&#8220;windows&#8221;, PHP_OS))</p>
<p>works for other versions or configurations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pat Day</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-63579</link>
		<dc:creator>Pat Day</dc:creator>
		<pubDate>Tue, 01 Jul 2008 21:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-63579</guid>
		<description>On page 948, Listing 26.11, lines 13-15, the $_REQUESTs need to be converted with intval() so mktime() will accept them as integers, rather than strings.

Thanks for the great book, the best one I have read as yet.  Very comprehensive, including many topics not covered in other PHP books. Immensely helpful.  Thankyou.</description>
		<content:encoded><![CDATA[<p>On page 948, Listing 26.11, lines 13-15, the $_REQUESTs need to be converted with intval() so mktime() will accept them as integers, rather than strings.</p>
<p>Thanks for the great book, the best one I have read as yet.  Very comprehensive, including many topics not covered in other PHP books. Immensely helpful.  Thankyou.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Bielma</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-42</link>
		<dc:creator>Paul Bielma</dc:creator>
		<pubDate>Fri, 11 Nov 2005 18:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-42</guid>
		<description>On page 109 of the Core PHP Programming 3rd Edition, The second to the last paragraph says &quot;The class counter is incremented in the constructor and decremented in the constructor.&quot; Should this be &quot;...decremented in the destructor&quot;? 

I think this is a really great book. It has helped me a great deal.

Thanks!</description>
		<content:encoded><![CDATA[<p>On page 109 of the Core PHP Programming 3rd Edition, The second to the last paragraph says &#8220;The class counter is incremented in the constructor and decremented in the constructor.&#8221; Should this be &#8220;&#8230;decremented in the destructor&#8221;? </p>
<p>I think this is a really great book. It has helped me a great deal.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Brown</title>
		<link>http://www.leonatkinson.com/writing/core-php-programming/core-php-programming-3e-errata/comment-page-1/#comment-8</link>
		<dc:creator>Matthew Brown</dc:creator>
		<pubDate>Thu, 18 Aug 2005 00:55:22 +0000</pubDate>
		<guid isPermaLink="false">http://home.leonatkinson.com/wordpress/index.php/core-php-programming-3e-errata/#comment-8</guid>
		<description>Chapter 11 pg 402 in the description of sort(): change &quot;Chapter 15&quot; to &quot;Chapter 21&quot;</description>
		<content:encoded><![CDATA[<p>Chapter 11 pg 402 in the description of sort(): change &#8220;Chapter 15&#8243; to &#8220;Chapter 21&#8243;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
