Skip to main content

Php framework : symfony 1, symfony 2 or Yii


We are going to switch from an homemade framework to Symfony or Yii. The capabilities of these two framework are, from our point of view, similar (ie they both have what we need).



Our situation : php 5.2.9, medium-size website (10.000 uniques / day) but shared hosting.



  • Given the version of php that we have, we can't go for symfony 2 (it needs 5.3.4) so is it a smart move to go for symfony 1 now that the version 2 is out ?

  • We are in shared hosting (going to a dedicated server is not an option for now, we don't have the money for it), won't symfony 1 and yii ask for too much ressources (I'm more worry about symfony 1, from what I've read) ?

  • Some of the websites contributors are not really experienced with php / MVC frameworks : once the structure of the website will be converted to one of these 2 frameworks, will there be difficulties for these contributors ? Spending 2-3 days to discover the framework is OK, 2-3 weeks is not. I've read that yii has less tutorials (but complete documentation) than symfony but this last one is more difficult to understand.



Please no answer like "this one is better", ideally someone that would have use the two frameworks recently.


Source: Tips4allCCNA FINAL EXAM

Comments

  1. symfony2 is not out yet. it's no more preview but its still beta.

    to point 2; depends whats your limits in php (e.g. memory limit) symfony has by the way a nice caching strategy, so it shouldn't be a problem.

    as you mentioned, theres no answer like "a or b is better". but you should check if you are able to run those frameworks on your shared host (sometimes its a bit bitchy to set up symfony on shared hosts).

    ReplyDelete
  2. I'm extremely late to the game here, but it's kind of relevant because Symfony2 is actually stable and in use. I struggled to get Symfony2 working for a week and a half on a work dev box running CentOS 5.6 VPS (with a relatively locked down configuration, but I can sudo).

    Then I quit because the "Agile Development with Yii" and "Yii Cookbook" I had ordered a few days earlier had arrived, and I thought to myself "nothing could be worse than this headache". Basically, there was all kinds of issues with git and Symfony's console depending on it (I think). I was just trying to play.

    Then I started playing with Yii. I designed my db very carefully, checked out the extensions, including the bada$$ bootstrap extensions, and basically my entire app was done in about 48 hours, and it included a 10 table db, tons of data, and fairly complex user permissions, etc.

    Piece of cake. I don't really see the advantage of Symfony2 other than the fact that it's going to be the backbone of Drupal 8, if that's the kind of thing you're into. :)

    Oh, and not only did Yii make it easy to build the app, it made it easy to make me look like a ROCKSTAR. Total jQueryUI integration (in addition to Bootstrap - which is responsive by default, so I don't even have to worry about that crap). All data is delivered through portlets and widgets that are super easy to use.

    I couldn't recommend Yii highly enough. It's the bomb.

    ReplyDelete
  3. As i have not use Yii i cannot make a comparison there. However if you go for Symfony 1.xx now that S2 is out, which you cannot use because of the php version, there is a limited support life to be taken into account.
    Sensio say November 2012 but support and fixes may well tail of as S2 gets more traction. It doesn't mean it will disappear of course but you need to weigh this factor into your decision making.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.