<?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: PHP: Symfony vs. Zend</title>
	<atom:link href="http://www.karlkatzke.com/php-symfony-vs-zend/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.karlkatzke.com/php-symfony-vs-zend/</link>
	<description>PHP, Puppies, and other Geekery</description>
	<lastBuildDate>Mon, 01 Mar 2010 20:00:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sudhir</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-1631</link>
		<dc:creator>sudhir</dc:creator>
		<pubDate>Fri, 10 Jul 2009 11:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-1631</guid>
		<description>Use symfony as your framework and add zend components to enhance the missing pieces.</description>
		<content:encoded><![CDATA[<p>Use symfony as your framework and add zend components to enhance the missing pieces.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-1467</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 18 Feb 2009 13:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-1467</guid>
		<description>I don&#039;t think it can be stressed enough, if you have more than one project to maintain with any amount of code being shared, a framework like SF with a mature CLI is the way forward. Being &quot;forced&quot;, or perhaps better to say &quot;suggested&quot; to do things all one way is a huge advantage when it comes to maintenance. Plus, when new developers come on board their learning curve is greatly reduced. Which framework to use will always be personal preference. But knowing what you can and can&#039;t do with a framework and how that impacts your requirements should always be the deciding factor.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think it can be stressed enough, if you have more than one project to maintain with any amount of code being shared, a framework like SF with a mature CLI is the way forward. Being &#8220;forced&#8221;, or perhaps better to say &#8220;suggested&#8221; to do things all one way is a huge advantage when it comes to maintenance. Plus, when new developers come on board their learning curve is greatly reduced. Which framework to use will always be personal preference. But knowing what you can and can&#8217;t do with a framework and how that impacts your requirements should always be the deciding factor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eno</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-1316</link>
		<dc:creator>Eno</dc:creator>
		<pubDate>Thu, 04 Dec 2008 16:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-1316</guid>
		<description>I call ZF the &quot;unframework&quot; because it&#039;s really a bunch of components. We used to call those libraries in the old days but now everything is a &quot;framework&quot; right? :-)

Glad someone pointed out that everything about SF is customizable, including the directory structure and use of ORM.

Don&#039;t know why you chose to compare with SF 1.0 when 1.1 has been out for ages. And now 1.2 is out. Its significant because 1.2 comes with Propel 1.3 via a plugin, AND also comes with Doctrine 1.0 via a plugin too (pick one or use both). This also means the ORM layer is now just a plugin (and so can be replaced or ignored). Doctrine has some nice features like schema migrations.

I also wanted to point out that 1.2 has been re-factored and de-coupled enough to be used as a bunch of separate components if you want, just like ZU.

Finally, it couldn&#039;t hurt to mention some of the large sites running symfony  Yahoo Bookmarks  Delicious :-)</description>
		<content:encoded><![CDATA[<p>I call ZF the &#8220;unframework&#8221; because it&#8217;s really a bunch of components. We used to call those libraries in the old days but now everything is a &#8220;framework&#8221; right? <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Glad someone pointed out that everything about SF is customizable, including the directory structure and use of ORM.</p>
<p>Don&#8217;t know why you chose to compare with SF 1.0 when 1.1 has been out for ages. And now 1.2 is out. Its significant because 1.2 comes with Propel 1.3 via a plugin, AND also comes with Doctrine 1.0 via a plugin too (pick one or use both). This also means the ORM layer is now just a plugin (and so can be replaced or ignored). Doctrine has some nice features like schema migrations.</p>
<p>I also wanted to point out that 1.2 has been re-factored and de-coupled enough to be used as a bunch of separate components if you want, just like ZU.</p>
<p>Finally, it couldn&#8217;t hurt to mention some of the large sites running symfony  Yahoo Bookmarks  Delicious <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alvaro</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-1305</link>
		<dc:creator>Alvaro</dc:creator>
		<pubDate>Sat, 29 Nov 2008 16:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-1305</guid>
		<description>I want to point that the symfony directory structure is customizable, just check the chapter 19 of the symfony book. As was pointed in the comments, the ORM is not a must, you can use plain old queries or whatever layer you want with symfony. 

With frameworks people tend to forget that the code is just plain old PHP so a mysql_select_db() will always work :)

I will also like that the author point out the Propel bugs or at least updates this post.</description>
		<content:encoded><![CDATA[<p>I want to point that the symfony directory structure is customizable, just check the chapter 19 of the symfony book. As was pointed in the comments, the ORM is not a must, you can use plain old queries or whatever layer you want with symfony. </p>
<p>With frameworks people tend to forget that the code is just plain old PHP so a mysql_select_db() will always work <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I will also like that the author point out the Propel bugs or at least updates this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prathapan Sethu</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-1297</link>
		<dc:creator>Prathapan Sethu</dc:creator>
		<pubDate>Fri, 21 Nov 2008 05:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-1297</guid>
		<description>We at QBurst have used both Zend, Symfony, CakePHP too and I would recommend Symfony anyday. It&#039;s mature, is a real MVC framework, has good documentation and there is a lot of community support. In contrast, Zend has a lot more way to go to mature itself as a real MVC framework. True, it provides lot of libraries, but those are mostly object-oriented wrappers over existing methods - not really useful.</description>
		<content:encoded><![CDATA[<p>We at QBurst have used both Zend, Symfony, CakePHP too and I would recommend Symfony anyday. It&#8217;s mature, is a real MVC framework, has good documentation and there is a lot of community support. In contrast, Zend has a lot more way to go to mature itself as a real MVC framework. True, it provides lot of libraries, but those are mostly object-oriented wrappers over existing methods &#8211; not really useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iman</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-471</link>
		<dc:creator>Iman</dc:creator>
		<pubDate>Thu, 03 Jul 2008 10:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-471</guid>
		<description>I&#039;m trying to work with ZF but I found it too hard to learn quick, always I use new things by using them in a real project, but this time it take a long time for me and I didn&#039;t do any thing!!! 
maybe I gets old!!!
I think its manual is the problem I cannot found things I looking for fast.
Anyway I continue to learn it well.
Iman</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to work with ZF but I found it too hard to learn quick, always I use new things by using them in a real project, but this time it take a long time for me and I didn&#8217;t do any thing!!!<br />
maybe I gets old!!!<br />
I think its manual is the problem I cannot found things I looking for fast.<br />
Anyway I continue to learn it well.<br />
Iman</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paradigm Shift in Web Development to MVC &#187; Andrew Rollins</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-281</link>
		<dc:creator>Paradigm Shift in Web Development to MVC &#187; Andrew Rollins</dc:creator>
		<pubDate>Thu, 08 May 2008 23:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-281</guid>
		<description>[...] like the Zend Framework the best, and this article pretty much explains my reasons. Plus, it&#8217;s sponsored by Zend Technologies, the creators of PHP. Some resources I&#8217;ve [...]</description>
		<content:encoded><![CDATA[<p>[...] like the Zend Framework the best, and this article pretty much explains my reasons. Plus, it&#8217;s sponsored by Zend Technologies, the creators of PHP. Some resources I&#8217;ve [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nevio</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-240</link>
		<dc:creator>Nevio</dc:creator>
		<pubDate>Sun, 27 Apr 2008 23:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-240</guid>
		<description>Hmm... something from me about SF and ZF.
They are both excellent. The only thing is how u look on them. If you need something rapidly, if you don&#039;t care about application layout nor how things are working than use SF. You will end up with big project in just a second. From the other hand if you want total customized application use ZF. The only problem ( I consider this very good because a lot of &quot;developers&quot; use rapid frameworks and they don&#039;t know a sh**. Tell them to write for example MVC and they will not know from where to start. ) with ZF is that you need to know A LOT about php to use it properly ( and build few things before actually start to do rapid appz. ). So if u don&#039;t have a lot experience with php, if u don&#039;t know what stands for OOP and MVC than go and use SF or any other framework. Don&#039;t even think to start with ZF if you want to finish project in a blink of an eye :). It will be quite easier to catch that &quot;concepts&quot; but from other hand if u do it over ZF noone will know ur application layout ( if no Z_C integrated ). How someone said ZF don&#039;t have real MVC it&#039;s more Controller with MV light-support which makes it even easier to catch ( personally i don&#039;t like Zend_Controller. I wrote my own based upon ZF and similar to SF ). As well I think that it&#039;s generally bad idea to compare ZF with SF. They are completely different except php syntax :D. For those who says bad things about this 2 frameworks well people don&#039;t be as*hol**. Build ur own framework. They all give a lot of effort to make our life easier. &quot;Framework&quot; like idea cannot be finished. It will always be buggy no matter how much people spend time on it. ZF got a hell of a lot bugs. Controller, well I can only say that it can be written a hell of a lot better, Layout as well. SF u can&#039;t customize ( i hate when someone restrict something. ). Application directory can be better but who knows. I like it on that way. Someone else like it on some other way. That&#039;s normal n get use to it :).  SF vs. ZF = throw new Exception ( &quot;non-comparable&quot; ) :D</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; something from me about SF and ZF.<br />
They are both excellent. The only thing is how u look on them. If you need something rapidly, if you don&#8217;t care about application layout nor how things are working than use SF. You will end up with big project in just a second. From the other hand if you want total customized application use ZF. The only problem ( I consider this very good because a lot of &#8220;developers&#8221; use rapid frameworks and they don&#8217;t know a sh**. Tell them to write for example MVC and they will not know from where to start. ) with ZF is that you need to know A LOT about php to use it properly ( and build few things before actually start to do rapid appz. ). So if u don&#8217;t have a lot experience with php, if u don&#8217;t know what stands for OOP and MVC than go and use SF or any other framework. Don&#8217;t even think to start with ZF if you want to finish project in a blink of an eye <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . It will be quite easier to catch that &#8220;concepts&#8221; but from other hand if u do it over ZF noone will know ur application layout ( if no Z_C integrated ). How someone said ZF don&#8217;t have real MVC it&#8217;s more Controller with MV light-support which makes it even easier to catch ( personally i don&#8217;t like Zend_Controller. I wrote my own based upon ZF and similar to SF ). As well I think that it&#8217;s generally bad idea to compare ZF with SF. They are completely different except php syntax <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . For those who says bad things about this 2 frameworks well people don&#8217;t be as*hol**. Build ur own framework. They all give a lot of effort to make our life easier. &#8220;Framework&#8221; like idea cannot be finished. It will always be buggy no matter how much people spend time on it. ZF got a hell of a lot bugs. Controller, well I can only say that it can be written a hell of a lot better, Layout as well. SF u can&#8217;t customize ( i hate when someone restrict something. ). Application directory can be better but who knows. I like it on that way. Someone else like it on some other way. That&#8217;s normal n get use to it <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  SF vs. ZF = throw new Exception ( &#8220;non-comparable&#8221; ) <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wil Sinclair</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-168</link>
		<dc:creator>Wil Sinclair</dc:creator>
		<pubDate>Tue, 22 Jan 2008 06:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-168</guid>
		<description>First off, I&#039;ll get the disclaimer out of the way- I&#039;m the project lead for Zend Framework here at Zend. Nice comparison! The characterization of ZF is accurate (well, except for the ActiveRecord part, which Geoffrey pointed out already ;)). I just wanted to mention that we&#039;ll have many features, including advanced forms support and a &#039;use-at-will&#039; CLI tool in 1.5 (soon to be released). You might want to revisit this comparison at that time. And if you want more ORM functionality with ZF, this project has just come to my attention: http://xyster.devweblog.org/about. It&#039;s built on top of ZF and adds an ORM component, amoung others.

Thanks for the kind words in the conclusion!
,Wil</description>
		<content:encoded><![CDATA[<p>First off, I&#8217;ll get the disclaimer out of the way- I&#8217;m the project lead for Zend Framework here at Zend. Nice comparison! The characterization of ZF is accurate (well, except for the ActiveRecord part, which Geoffrey pointed out already <img src='http://www.karlkatzke.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). I just wanted to mention that we&#8217;ll have many features, including advanced forms support and a &#8216;use-at-will&#8217; CLI tool in 1.5 (soon to be released). You might want to revisit this comparison at that time. And if you want more ORM functionality with ZF, this project has just come to my attention: <a href="http://xyster.devweblog.org/about" rel="nofollow">http://xyster.devweblog.org/about</a>. It&#8217;s built on top of ZF and adds an ORM component, amoung others.</p>
<p>Thanks for the kind words in the conclusion!<br />
,Wil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Symfony vs Zend framework</title>
		<link>http://www.karlkatzke.com/php-symfony-vs-zend/comment-page-1/#comment-156</link>
		<dc:creator>Symfony vs Zend framework</dc:creator>
		<pubDate>Wed, 16 Jan 2008 23:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/php-symfony-vs-zend/#comment-156</guid>
		<description>[...] sentido web veo un post que resume una comparativa entre la opción de Zend y Symfony, publicada en karlkatzke.com, que llega a la siguiente [...]</description>
		<content:encoded><![CDATA[<p>[...] sentido web veo un post que resume una comparativa entre la opción de Zend y Symfony, publicada en karlkatzke.com, que llega a la siguiente [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
