vote up 1 vote down star

I am looking at using an ORM in PHP for the first time. Until now my PHP projects have been fairly small and an ORM seemed like overkill.

I really like NHibernate so I was hoping that there is an ORM out there for PHP that works and is configured similarly to NHibernate. If there is one with a fluent interface like Fluent NHibernate that would be even better.

Thanks.

flag

You might find something useful here: stackoverflow.com/questions/345957/… – Tom Haigh May 1 at 14:05

1 Answer

vote up 3 vote down check

I'd recommend you take a look at Doctrine ORM. Doctrine can generate your table to PHP class mappings using YAML, which is similar to NHibernate's mappings using XML. Doctrine also provides command line tools to rebuild aspects of your data layer based on changes to either your schema, the models themselves or the database tables you're abstracting over.

I've only really looked at NHibernate, not used it. So I wouldn't claim to know precisely how well the two ORMs approaches cross-over; I'm sure a quick glance through their documentation would help you reach a better conclusion.

link|flag
Just as a follow up. Docrtine turns out to be based on ActiveRecord which is not like NHibernate. The closed thing I've found is outlet-orm.org - Outlet ORM – modernzombie Sep 10 at 19:38

Your Answer

Get an OpenID
or

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