I'm looking for an ORM (Object-Relational Mapper) for PHP. I want something simple that I can get started with quickly. I'm used to ActiveRecord in Rails, but I don't need a full framework. My partner knows PHP, but is not really a programmer, and learning a framework would take more time than the project.

Thanks, Craig

link|improve this question
possible duplicate of Good PHP ORM Library? – Noah Goodrich Jul 16 '11 at 13:01
feedback

20 Answers

up vote 7 down vote accepted

I like Kohana so far, and it is simple to use by just extending a base class for each of your tables:

http://docs.kohanaphp.com/libraries/orm

link|improve this answer
If you like Kohana, definitely checkout the LEAP ORM for Kohana. You can download the source code at github.com/spadefoot/kohana-orm-leap. It handles composite keys and works with a ton of databases. – Matthew Jan 7 at 3:49
feedback

I've been working on a really simple nearly-zero-configuration single-class ORM called Idiorm.

It gives you a fluent query API that looks like this:

$widgets = ORM::for_table('widget')
    ->where('size', 'large')
    ->order_by_desc('name')
    ->find_many();

This will return an array of objects.

Another example: find a single object, update and save:

$widget = ORM::for_table('widget')->where('name', 'Basic Widget')->find_one();
$widget->name = 'Advanced Widget';
$widget->save();

This requires no model configuration (no model classes or XML files) - just database connection details. It's a nice drop-in replacement to clean up legacy code littered with raw SQL strings, and it's perfect for small, simple applications.

Have a look at the documentation on Github. Also, see this blog post about Idiorm. Any feedback greatly appreciated.

UPDATE: I have recently released another project - Paris - which is a very lightweight Active Record implementation built on top of Idiorm.

link|improve this answer
Very nice! I like this one a lot. +1 – Bryan Aug 26 '10 at 17:39
Thanks, It's really good for small app. – yogs Aug 31 '10 at 15:29
I love Idiorm and Paris. Great work! – Sander Marechal Feb 18 '11 at 12:45
feedback

You may want to try Doctrine. http://www.doctrine-project.org/

link|improve this answer
I'd go this way, too. The Symfony camp is slowly moving away from Propel, and towards Doctrine. – Peter Bailey Oct 9 '08 at 2:46
43  
simple is in my opinion something that hasn't any relation to doctrine... – Hippo Dec 1 '09 at 17:13
feedback

Dunno why RedBean for PHP hasn't been mentioned here yet, it's extremely easy to use and get started with.

RedBeanPHP is an open source ORM (object relational mapping) tool for PHP. It focuses on simplicity and ease of use. What makes RedBean unique is that it creates your database schema on-the-fly. It scans your data and adjusts the column types to fit your object properties. If your models are stabilized you can freeze the database. This way RedBean is easy to develop with but is also extremely fast on production servers. With RedBean, ORM becomes fun!

link|improve this answer
feedback

Check out Outlet ORM: http://www.outlet-orm.org/

link|improve this answer
2  
Gotta second Outlet. Doctrine is comically bloated - it is WAY too big to be a sensible choice for anything but the lightest of server loads. Outlet does some clever stuff to stay out of your model's way and uses up about a tenth of the memory per request as Doctrine. – Shabbyrobe May 8 '09 at 11:26
5  
A Doctrine blogger posted a response to this comment about Doctrine being "bloated". I've been using Doctrine for a while now and it works great. Having built in db migrations is also a useful feature. doctrine-project.org/blog/php-benchmarking-mythbusters – Chris Williams Nov 18 '09 at 22:10
2  
"comically bloated"... – phidah Nov 19 '09 at 0:49
2  
My original comment referred to Doctrine 1, which was exactly as I described. The blog post uses an alpha of the much improved Doctrine 2 to rebut my comment, which is disingenuous. – Shabbyrobe Feb 13 at 11:25
feedback

It's not an ORM, but I use ADODB.

It is very simple to use, is rock-solid and very straight forward.

link|improve this answer
If you decide upon ADOdb then install the C extension if possible. adodb.sourceforge.net/#download – leek Oct 9 '08 at 1:58
2  
Dear god people, he made a valid suggestion that fit within the OP's parameters. Does ADODB suck? Maybe. Was it off topic or factually wrong? No. Don't down vote a guy because you disagree with his answer, down vote if the answer is factually incorrect or off topic. You sir get a +1 to round this suggestion back up to 0. – dcousineau Nov 18 '09 at 22:18
feedback

Try DaBase - most easy to use and lightweight ORM for PHP!

link|improve this answer
Maybe examples on that site are outdated, but SELECT id FROM dabase_users [0.28395652771] - it's toooo slow. And SELECT * FROM dabase_directories_tree WHERE id = '5' [0.917911529541] it's even ridiculous. – OZ_ Jun 19 '11 at 18:51
This is milliseconds, not seconds. – SeniorDev Jun 27 '11 at 10:43
feedback

Another option could be Propel.

link|improve this answer
feedback

I support @boxoft's recommendation of Doctrine.

However, in the spirit of options, I should mention the Zend_Db component of Zend Framework along with the Zend Framework ORM project.

link|improve this answer
feedback

I used Pear's DB_DataObject and it works pretty cool. It might not be very sophisticated but it's very simple and very lightweight.

link|improve this answer
feedback

Good stand-alone ORMs i would suggest are (all have stable releases): - Doctrine (phpdoctrine.org) - Propel (propel.phpdb.org) - ezpdo (ezpdo.net)

you should not use: - Kohana -> as it is a full framework (including an orm) - ADODB -> as it is no ORM but a database abstraction layer - ZendDB/Zend ORM project -> ORM project is not stable and not officially maintained by zend

link|improve this answer
feedback

You might want to check out phpDataMapper. It's based on the DataMapper pattern instead of the ActiveRecord pattern as you had mentioned, but it is very lightweight and easy to use.

link|improve this answer
feedback

The most simple ORM layer for PHP i have seen is: SPOD

link|improve this answer
feedback

Gotta second Outlet. Doctrine is comically bloated - it is WAY too big to be a sensible choice for anything but the lightest of server loads. Outlet does some clever stuff to stay out of your model's way and uses up about a tenth of the memory per request as Doctrine

First let me say that I haven't used outlet.

I don't think Memory usage is a serious problem for Doctrine but select query time is horrific. Doctrine is too slow to be considered for any sites with serious traffic or applications that have a lot of data. It simply does not scale well.

I've gotten around this by writing select statements the old fashioned way and only using doctrine for insert/update queries. For select statements it is next to useless.

Overall, I'd rather use Doctrine than not. I like a lot of the features in doctrine and it has enhanced my applications a lot and made writing applications much more enjoyable.

link|improve this answer
feedback

Kohana looks like what I'm looking for. I've not gotten a chance to use it yet -- I'm still using my hand-coded ORM. Thanks for the tip though!

link|improve this answer
feedback

Repose PHP ORM is another potential solution.

link|improve this answer
feedback

Check out Simple ORM for PHP it is intended to be a very light weight version of Hibernate and requires far fewer steps to setup. Development is still in progress and help is needed.

link|improve this answer
feedback

A very simple and well laid out PHP ORM that I use is PHPSmartDB ORM. This also provides a means to easily communicate with your database objects. Highly recommended.

link|improve this answer
feedback

You can try re.

It attempts to implement the principles of the Relational Model as advocated by Date and Darwen in their book The Third Manifesto.

The resulting API is the relational algebra plus features to cater for practical problems, with an object-oriented syntax, of coures, thus, the term "object-relational mapping."

re recognizes that the Relational Model is open-ended in terms of data types. As such you can use PHP classes as your attribute fields.

Currently only two types of "SQL Drivers" are supported: MS SQL and MySQL.

Hope this helps.

Here is the website: http://www.reetudes.com

link|improve this answer
feedback

Try Sado PHP Simple Abstract Database Objects with ORM package - Video tutorials provided on Website

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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