I would like to get started with PHP, and 5.3 release seems to bring many nice features (namespaces, lambda functions, and many others).

I have found some MVC frameworks, and some of them support only PHP 5:

but can anyone recommend one of those MVC frameworks that plans to actively use PHP 5.3 features, not just being compatible with PHP 5.3?

Update

Results so far:

link|improve this question

Excuse me, but what is lambda? – daemonfire300 Dec 5 '09 at 11:35
feedback

15 Answers

up vote 8 down vote accepted

Zend Framework 2.0 will support only PHP 5.3 because one of the major points on their roadmap for 2.0 is converting everything in the framework to use namespacing.

Edit: The current version of Zend Framework is compatible with 5.3, but 2.0 will actually be built on top of many of the new features offered by 5.3 such as namespacing.

link|improve this answer
1  
Great, any language without namespaces is just incomplete. – Bart van Heukelom Feb 22 '10 at 16:18
feedback

http://fatfree.sourceforge.net is very light and powerful and is only for 5.3, using its features at large.

link|improve this answer
2  
the other frameworks mentioned here are "in development". fatfree is already stable and used in production sites. – stillstanding May 25 '10 at 3:26
1  
The shear volume of new PHP frameworks is staggering! Is there really no one framework out there we latch on to and rally around? The thought of jumping in and learning a new framework for every website I may be asked to extend in the future, leaves my brain somewhat numb. That said, I have checked out fatfree. I think the architecture is quite brilliant. It's certainly creative compared to most PHP framworks. I have yet to use it (and probably never will sadly as I have latched on to CodeIgniter for it's familiar PHP-ness.) But it's definitely a great way to think out-of-the-box about MVC. – Bretticus Dec 13 '10 at 7:13
feedback

You should check out Lithium.

This project is currently actively developped by 2 main CakePHP developpers.

It's still young (announced and first release a month ago) but it's worth keeping an eye on it.

link|improve this answer
1  
It seems there's a new PHP framework out there every week. This one looks interesting though. – MiseryIndex Dec 3 '09 at 23:06
feedback

It seems that Symfony 2.0 will require PHP 5.3, based on this post: Why will Symfony 2.0 finally use PHP 5.3:

To sum up, we have decided to take the best of both worlds:

  • symfony 1.4 (with support until early 2013) will be the best version for existing projects and conservative companies.

  • Symfony 2.0 (probably to be released late 2010) will be the best version for new projects and companies willing to either install PHP 5.3, use the Zend Server, or install the "right" Linux distribution.

I hope you will all understand and approve this move. The Symfony core team is really excited about the opportunities it gives us, and we think the Symfony 2.0 release will be a blast. Wish us luck!

link|improve this answer
feedback

Nette is a great framework, much better than Zend and it supports and requires 5.3 right from the first release. See http://www.nette.org

link|improve this answer
feedback

FLOW3

FLOW3 is based on the newest technologies of tomorrow like for example namespaces. These technologies aren't available in PHP 5.2, but are implemented in PHP 5.3. It has had it's final release in June 2009, so most operating system distributors do not provide PHP 5.3 packages yet. You can find instructions to install PHP 5.3 for widely used operating systems in the appendixes.

link|improve this answer
feedback

Found another http://fuelphp.com.

In the model(ORM) layer, I found www.phpactiverecord.org is really promising, which use php 5.3 features heavily, result in clean and beautiful API.

I have below standards to choose the full stack mvc framework.

  1. Simple to use, easy to extend. Do not copycat java framework.
  2. Great documentation
  3. Use php as view template, no need to learn another language
  4. View layer support partial, and layout template.
  5. Huge active community

But I haven't found any mvc framework meet all above standards. So I will go on using codeigniter, with phpactiverecord in model layer, until dominate php framework emerge.

link|improve this answer
+1 didn't know about phpactiverecord, thanks – alexandrul May 6 '11 at 11:06
feedback

PHPRO framework:

http://phpro.org

link|improve this answer
feedback

One other http://www.recessframework.org/

link|improve this answer
feedback

You may want to check out PeecFW

PeecFW is a really good documented PHP 5.3+ framework that is based on MAT/MVC systems. PeecFW has modules and a template engine and is highly extensible :-) They have tons of video tutorials on youtube and they are very active in the subversion log. PeecFW also incorporates big libraries such as Smarty 3.0 and Doctrine ORM.

link|improve this answer
feedback

I recently launched a framework, Sonic, which requires PHP 5.3 or later.

It uses namespaces, late static binding, closures, etc.

It also has a full implementation of Facebook's Big Pipe built right in:
sonicframework.com/tutorial/turbo

It's very quick and easy to set up:
sonicframework.com/quick-start

Source is available on github:
http://www.github.com/ccampbell/sonic

link|improve this answer
feedback

Code Igniter is compatible with PHP 5.3

Release Notes

Now do you mean "compatible" or "leverages the new features of that version of PHP in a compelling way"?

It's important to realize that no matter how deep into a framework you get, you can always write in raw PHP, so something like a lambda will always be "supported" if the 5.3 version of PHP doesn't explicitly break the framework.

link|improve this answer
the second part: using the new features of 5.3 in an easy to follow and learn way. – alexandrul Dec 3 '09 at 22:21
and given my lack of experience, I'm hoping to learn some best practices of using those new features from the framework samples (with some luck) – alexandrul Dec 3 '09 at 22:23
Understood. As far as I know, CodeIgniter doesn't -expand- on those 5.3 features, they just don't break CodeIgniter. – Alex Mcp Dec 3 '09 at 22:32
feedback

http://www.hydrogenphp.com is very young, but makes heavy use of PHP 5.3 features. Its model-end stuff is killer, and is ridiculously fast if you're running memcached.

link|improve this answer
3  
This looks like an incredibly verbose and less powerful version of Doctrine 2. I don't see why anyone would use this. – ryeguy Apr 29 '10 at 18:05
Agreed. Slick homepage though. – Abba Bryant May 3 '10 at 5:13
feedback

Check out Alloy Framework - It's a new PHP 5.3+ Hierarchal MVC Framework that works a little differently than most other MVC frameworks.

The main differences to other framework projects are primarily:

  1. Modular Organization - single folder for a group of controllers/views/entities that are created for the same structure - "blog" or "events", etc.
  2. HMVC (Hierarchal MVC) - Allows module sub-dispatches anywhere within views or controllers - extremely useful for "wiget" type structures within layouts or nested views. Helps promote code re-use for common structures like "comments", "tags", "ratings", etc.
  3. More explicitness - view objects are explicitly retuned by the controller method for display instead of implicitly loaded, etc.

Read more on the Architecture page of the manual.

The URL Router is also very nice and borrows a lot of concepts from Merb and Rails.

link|improve this answer
feedback

cakephp is the best for that try it , its simple and every thing get there, what u want

link|improve this answer
Yeah.. CakePHP 1.3 use some PHP 5.3 features & functions and CakePHP 2.0 will be based on PHP 6.0. – TiuTalk May 22 '10 at 17:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.