views:

145

answers:

4

Has anyone used Php frameworks just like we have in Python(Django) and Java(Spring).

I want to use something which has end to end solutions. ORM tools, transaction mangement, logging etc.

I am not sure how Cake is? But, I am looking something very similar to Django in Php.

+2  A: 

IMHO symfony is the more similar to Django.

Luca Bernardi
A: 

How about CodeIgniter http://codeigniter.com/ ?

hex
codeigniter doesn't seems to have ORM and Auth modules. I think CakePhp or Symfony are the one. Thanks for your reply anyways!
Cake's Auth modules is super simple as long as it's a simple auth. They do have an access control list module, but it's one of the more confusing parts of Cake. I haven't seen a good row level locking auth component in Cake that wasn't custom rolled (so just my 2 cents, Cake's auth is very limited)
Travis Leleu
CodeIgniter doesn't have a built-in ORM but there are several projects such as http://www.assembla.com/wiki/show/IgnitedRecord or you can even use DataMapper with CodeIgniter http://komunitasweb.com/2009/04/codeigniter-tutorial-orm-with-datamapper/. As for the Auth system check http://codeigniter.com/wiki/auth/
hex
+1  A: 

See the exhaustive list of PHP frameworks.

Sarfraz
Sorry Sarfraz, but with the answer being accepted I have to downvote it, because it's undeserved. The link to phpframeworks was already given in the comments before you gave your answer. It is also not a direct answer to the OP's question. With the question being marked as duplicate, I'd expect a closevote from a regular like you instead of repwhoring with a link that is the standard reply to each and every framework related question on SO.
Gordon
@Gordon: I did not see that link, should i delete my answer?
Sarfraz
@Sarfraz Well no, apparently the OP found it most helpful. And it's not like I am any authority on what may or may not be given as an answer. Just telling you my opinion on it. No hard feelings.
Gordon
@Gordon: Ok no problem, thanks for telling that :)
Sarfraz
+2  A: 

Symfony http://www.symfony-project.org/

Osman Üngür