vote up 1 vote down star

As the question says it all.

Which framework in PHP is most closely cloned to ActiveRecord (Ruby on Rail).

I have gone through many frameworks claiming to be based on ActiveRecord ideology but unfortunately none really come any close to ActiveRecord. Wny?

Are there any such frameworks that I have missed?

flag
1  
Are you looking only for an ActiveRecord implementation, or a full RoR framework in PHP. Also what do you mean by "none really come any close to ActiveRecord". What would you consider to be really close to ActiveRecord? – Kekoa Jun 3 at 6:10
I have tried Yii which claims to be a sort of clone of RoR and its ActiveRecord. But it falls flat on many grounds as compared to ActiveRecord. – Yogi Yang 007 Jun 3 at 6:29

5 Answers

vote up 2 vote down check

I would say the most stable and up-to-date project resembling RoR is PhpOnTrax

link|flag
I this is the closest PHP can get to RoR and Active Record. Thanks for this. – Yogi Yang 007 Jun 4 at 15:15
is this framework stable and has good support from community ? – nightingale2k1 Jul 19 at 4:22
vote up 0 vote down

There is a project called php-activerecord (beta): http://www.derivante.com/2009/05/19/php-activerecord-available-for-beta-testing/

link|flag
vote up 4 vote down

I think you're slightly confused. ActiveRecord itself isn't really a framework; Rails is the framework, ActiveRecord is the object-relational mapper (ORM, or database abstraction layer, if you prefer).

That said, CakePHP is probably the PHP framework with the most similarities to Rails, in general.

But either way, why not just use Rails? You won't be able to get anything like Rails on PHP.

link|flag
Thanks for correcting me. I mean RoR with ActiveRecord. – Yogi Yang 007 Jun 3 at 6:29
vote up 2 vote down

If you are looking for a ORM package then Propel is quite nice.

PHP has a little bit of trouble implementing the Active Record pattern. Because of a shortcoming with its handling of static methods and inheritance you can't (easily) implement a Person::findByPrimary(1) style static method.

Instead most PHP ORM's use a Table Data Gateway pattern and have separate classes for table opperations PersonHelper->findByPrimary(1); and row actions new Person()->save().

link|flag
vote up 0 vote down

It is worth nothing that since the release of PHP 5.3, late static binding has opened the doors to the kinds of reflection necessary to implement ActiveRecord on PHP!

link|flag

Your Answer

Get an OpenID
or

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