views:

124

answers:

4

I have found plenty of great PHP frameworks, but so many of them seem to use rails-like URL routing. Anyone know of a PHP framework which emulates the django model?

A: 

Cannot understand well your question, maybe i do not know well the differences between django and rails routes.

Anyway, take a look at CakePHP routes to see if you like them. In such case, cakephp is one of the best mvc framework out there!

Enrico Carlesso
+2  A: 

Symfony does, or at least close enough. You can evaluate other PHP frameworks' documentation for other comparisons.

artlung
+2  A: 

The Zend Framework features URL mapping from standard regular expressions (if this is what you are referring to with the Django model): http://framework.zend.com/manual/en/zend.controller.router.html#zend.controller.router.routes.regex

nuqqsa
Absolutely, this is what I was looking for. Thanks!
kkubasik
A: 

Codeigniter ( http://codeigniter.com ) also does url routing.

Mohamed