English 中文(简体)
your experience using symfony 2.0 [closed]
原标题:

I m going to start a new project that s building web apps from scratch.

I have been thinking about using symfony framework for this project.

Should I start using symfony 2.0 or stick with 1.4 ? I estimate this project will be finish on May or June this year but I realise that symfony 2.0 still on development.

Which one I should use ? I want it to be flexible as possible. I heard also that symfony 2.0 faster than the previous one ...

Anyone has experience with symfony 2.0 (beta) for current project ? what do you think ? should I use it or may be should I move to another framework (I consider about kohanaphp as the back up)

最佳回答

Quoting the "Read and learn" page of the symfony-reloaded website :

Please note that Symfony 2 is not yet ready for production. The final release is planned for late 2010 and will only support PHP 5.3.2. In the meantime, we highly encourage you to use the current symfony 1.4 stable release for all your projects.


If the authors of Symfony themselves say that Symfony 2.0 should not be used now -- well, I suppose you shouldn t use it ;-)

Especially if your project should be finished something like 6 month before the date when SYmfony 2.0 stable will be released !

问题回答

I use Symfony2 for production, and there is no problem. Final release will be out at the end of the month. I think you should use it, as it s completly different from sf1.4 and REALY better!

I have been building a Symfony 2 application that is going into production next week! I started developing on PR11 and have been updating the codebase as each beta has been released.

This has been relatively pain free, just update the vendors folder then making any necessary changes to your code as some things change (usually just quicker and easier ways of doing the same thing, or some method renaming).

Bugs get found quickly by the community so as long as you keep updating your vendor directory I believe it s stable enough to start building with. Stable release is due July:

Symfony2 Beta 5 available, stable release for July





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签