Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Good PHP ORM Library?

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

share|improve this question

marked as duplicate by Corbin, Eitan T, pb2q, John Conde, bmargulies Sep 29 '12 at 16:40

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

21 Answers

up vote 8 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

share|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 '12 at 3:49

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.

share|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

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

share|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
59  
simple is in my opinion something that hasn't any relation to doctrine... – TheHippo Dec 1 '09 at 17:13

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!

share|improve this answer
Yes redbean is really good and light weight for small and medium application. – Ajay Patel Jun 27 '12 at 11:12

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

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

share|improve this answer
1  
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
valid comment @dcousineau, he gets my +1 as well. – seven Sep 26 '12 at 23:13

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

share|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 '12 at 11:25

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

share|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

Another option could be Propel.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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!

share|improve this answer

Repose PHP ORM is another potential solution.

share|improve this answer

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.

share|improve this answer

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

share|improve this answer

Allow me to add another option — a newcomer but a very strong PHP ORM from Agile Toolkit. It comes in two layers: Dynamic SQL with the following features:

  • RDBMS-independent query builder
  • object (not class) oriented
  • add fields, conditions, joins dynamically
  • builds parametric PDO queries
  • Subquery support
  • expressions and templates to access any functionality of your favorite database.

Built on top of Dynamic SQL the Model layer offers the following:

  • Database independent active record implementation
  • Dynamically added conditions
  • Read, Update, Delete and Insert support for multi-table models
  • Support for expressions and Subqueries
  • Model relations: hasOne / hasMany
  • Fully OOP design, extend and override
  • Advanced actions through hooks/controllers
  • Dynamic field descriptions with extendable meta-information

Further on there are Web UI layers which integrate with models, but since OP was asking about ORM-only solution I wouldn't go into details.

share|improve this answer

You can check out mine PDO Database Wrapper. It can act as very simple ORM and it is very fast.

share|improve this answer

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