<?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: Comparing PHP with other languages</title>
	<atom:link href="http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/</link>
	<description>PHP Programming, Web Development, PHP Advocacy and PHP Best Practices.</description>
	<lastBuildDate>Sun, 14 Mar 2010 11:08:56 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Baderit</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-84820</link>
		<dc:creator>Baderit</dc:creator>
		<pubDate>Thu, 31 Dec 2009 06:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-84820</guid>
		<description>Hello friends! Everyone who reads this blog - Happy New Year!</description>
		<content:encoded><![CDATA[<p>Hello friends! Everyone who reads this blog &#8211; Happy New Year!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacque Pellam</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-84817</link>
		<dc:creator>Jacque Pellam</dc:creator>
		<pubDate>Sun, 27 Dec 2009 21:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-84817</guid>
		<description>I like what you said here, very informational. I grew up in Memphis and your site brought back many fond memories. What is you favorite place to visit in Memphis? I cannot pick just one, there are too many to choose from. I always enjoyed visits to &lt;a href=&quot;http://memphisu.com/gracel/graceland-elvis/&quot; rel=&quot;nofollow&quot;&gt;Graceland&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I like what you said here, very informational. I grew up in Memphis and your site brought back many fond memories. What is you favorite place to visit in Memphis? I cannot pick just one, there are too many to choose from. I always enjoyed visits to <a href="http://memphisu.com/gracel/graceland-elvis/" rel="nofollow">Graceland</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deripet</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-84677</link>
		<dc:creator>Deripet</dc:creator>
		<pubDate>Sat, 26 Sep 2009 13:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-84677</guid>
		<description>Fully agree with you, about a week ago wrote about the same in his blog!</description>
		<content:encoded><![CDATA[<p>Fully agree with you, about a week ago wrote about the same in his blog!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olivier Lalonde</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-84581</link>
		<dc:creator>Olivier Lalonde</dc:creator>
		<pubDate>Fri, 05 Jun 2009 18:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-84581</guid>
		<description>Very good article although I have to disagree with PHP being function oriented. Since PHP5, all of my applications are heavily object oriented. Frameworks like Zend Framework (http://framework.zend.com) or dORM (http://www.getdorm.com) [disclosure: I wrote dORM] are the living proof that it is possible to write OO code with PHP.</description>
		<content:encoded><![CDATA[<p>Very good article although I have to disagree with PHP being function oriented. Since PHP5, all of my applications are heavily object oriented. Frameworks like Zend Framework (<a href="http://framework.zend.com" rel="nofollow">http://framework.zend.com</a>) or dORM (<a href="http://www.getdorm.com" rel="nofollow">http://www.getdorm.com</a>) [disclosure: I wrote dORM] are the living proof that it is possible to write OO code with PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zalla</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-84491</link>
		<dc:creator>zalla</dc:creator>
		<pubDate>Wed, 25 Mar 2009 16:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-84491</guid>
		<description>Take a Java example: variable types are known at the compile time. Variable types are immutable. 
Type casting is allowed. Both explicit (by programmer) or implicit by the JVM (widening, autoboxing, etc).
Once the reference type is declared, it defines the scope of method accessibility as in:

Class A {
public void method1 {}
}
Class B extends A{
public void method2 {}
}
Class Test
{
public static void main (String args[])
{
A a = new B();
a.method2(); // will FAIL since method2 cannot be referenced by type A
B b = new B();
b.method2(); //allowed, method can be referenced by the type

}
}</description>
		<content:encoded><![CDATA[<p>Take a Java example: variable types are known at the compile time. Variable types are immutable.<br />
Type casting is allowed. Both explicit (by programmer) or implicit by the JVM (widening, autoboxing, etc).<br />
Once the reference type is declared, it defines the scope of method accessibility as in:</p>
<p>Class A {<br />
public void method1 {}<br />
}<br />
Class B extends A{<br />
public void method2 {}<br />
}<br />
Class Test<br />
{<br />
public static void main (String args[])<br />
{<br />
A a = new B();<br />
a.method2(); // will FAIL since method2 cannot be referenced by type A<br />
B b = new B();<br />
b.method2(); //allowed, method can be referenced by the type</p>
<p>}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: malaysian hackers</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-84126</link>
		<dc:creator>malaysian hackers</dc:creator>
		<pubDate>Sun, 19 Oct 2008 07:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-84126</guid>
		<description>hey dude...
why don&#039;t you compare staightly between C++ with PHP???
its a better comparison though...
and please don&#039;t compare it too general, include some example would be better..</description>
		<content:encoded><![CDATA[<p>hey dude&#8230;<br />
why don&#8217;t you compare staightly between C++ with PHP???<br />
its a better comparison though&#8230;<br />
and please don&#8217;t compare it too general, include some example would be better..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Future Programming &#187; Blog Archive &#187; Ruby versus PHP or There and Back Again</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-83823</link>
		<dc:creator>Future Programming &#187; Blog Archive &#187; Ruby versus PHP or There and Back Again</dc:creator>
		<pubDate>Sun, 01 Jun 2008 12:34:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-83823</guid>
		<description>[...] happens that Ruby and PHP are equivalent in many of the ways that are important. See my post on comparing languages. PHP has some advantages with maturity, while ruby has some constructs, such as closures, that can [...]</description>
		<content:encoded><![CDATA[<p>[...] happens that Ruby and PHP are equivalent in many of the ways that are important. See my post on comparing languages. PHP has some advantages with maturity, while ruby has some constructs, such as closures, that can [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruby versus PHP or There and Back Again - Professional PHP</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-82309</link>
		<dc:creator>Ruby versus PHP or There and Back Again - Professional PHP</dc:creator>
		<pubDate>Sun, 23 Sep 2007 16:37:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-82309</guid>
		<description>[...] happens that Ruby and PHP are equivalent in many of the ways that are important. See my post on comparing languages. PHP has some advantages with maturity, while ruby has some constructs, such as closures, that can [...]</description>
		<content:encoded><![CDATA[<p>[...] happens that Ruby and PHP are equivalent in many of the ways that are important. See my post on comparing languages. PHP has some advantages with maturity, while ruby has some constructs, such as closures, that can [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Websites with information on PHP &#171; Krishna Srikanth&#8217;s Blog</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-82153</link>
		<dc:creator>Websites with information on PHP &#171; Krishna Srikanth&#8217;s Blog</dc:creator>
		<pubDate>Mon, 27 Aug 2007 08:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-82153</guid>
		<description>[...]  www.codewalkers.comÂ - articles and sample code www.decodephp.com - a blog by a phpian. http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/Â - Comparing php with other languages http://ilia.ws/archives/12-PHP-Optimization-Tricks.htmlÂ - [...]</description>
		<content:encoded><![CDATA[<p>[...]  <a href="http://www.codewalkers.comÂ -" rel="nofollow">http://www.codewalkers.comÂ -</a> articles and sample code <a href="http://www.decodephp.com" rel="nofollow">http://www.decodephp.com</a> &#8211; a blog by a phpian. <a href="http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/Â -" rel="nofollow">http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/Â -</a> Comparing php with other languages <a href="http://ilia.ws/archives/12-PHP-Optimization-Tricks.htmlÂ -" rel="nofollow">http://ilia.ws/archives/12-PHP-Optimization-Tricks.htmlÂ -</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flavio</title>
		<link>http://www.procata.com/blog/archives/2006/02/09/comparing-php-with-other-languages/#comment-39639</link>
		<dc:creator>Flavio</dc:creator>
		<pubDate>Tue, 07 Nov 2006 16:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/?p=174#comment-39639</guid>
		<description>PHP sucks so much... Come on, people, PHP started as just a CGI for creating Personal Home Pages (PHP); it has evolved with many retrofits, it&#039;s like converting a VW Beetle to compete in Formula 1; it can be done, it&#039;s fun, but it will not win the race, or it will win it with an absurd amount of effort.

J2EE is more powerful and ASP.NET/C# is light years ahead PHP. And Ruby surely is the future.</description>
		<content:encoded><![CDATA[<p>PHP sucks so much&#8230; Come on, people, PHP started as just a CGI for creating Personal Home Pages (PHP); it has evolved with many retrofits, it&#8217;s like converting a VW Beetle to compete in Formula 1; it can be done, it&#8217;s fun, but it will not win the race, or it will win it with an absurd amount of effort.</p>
<p>J2EE is more powerful and ASP.NET/C# is light years ahead PHP. And Ruby surely is the future.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
