vote up 32 vote down star
29

Does anyone know of a good object-relational-mapping library for PHP? I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the domain model and the relational model. I'm looking for a PHP library that functions similarly to the way Hibernate does for Java/.Net.

flag

57% accept rate

18 Answers

vote up 18 vote down

Have you looked in to Doctrine?

http://www.doctrine-project.org/

Also, check out Xyster.. It's based on the Data Mapper pattern.

http://xyster.devweblog.org/

link|flag
vote up 10 vote down

There are only two good ones: Doctrine and Propel. We favor Doctrine, it works well with Symfony. However if you're looking for DB support besides the main ones you'll have to write your own code.

link|flag
vote up 5 vote down

I've been developing Pork.dbObject on my own. (a simple PHP orm / Active Record implementation) The main reason is that i find most orms's too heavy.

The main thought of Pork.dbObejct is to be light-weight and simple to set up. No bunch of xml file, just one function call in the constructor to bind it, and an addRelation or addCustomRelation to define a relation to another dbObject.

Give it a look: Pork.dbObject

link|flag
I was looking for a lightweight PHP ORM implementation today, and found Pork.dbObject thanks to this post. It works great! +1 – E Dominique Apr 14 at 17:21
vote up 4 vote down

Check out Outlet ORM. It is simpler than Propel and Doctrine and it works similar to Hibernate, only with more of a PHP feel to it.

link|flag
vote up 3 vote down

try RedBean, its requires no configuration, no database (it creates everything on the fly), no models etc. It even does all the locking and transactions for you and monitors performance in the background (Heck! it even does garbage collection....) best of all... you dont have to write a single... line of code.. http://www.buurtnerd.nl#redbean Jesus this orm layer saved me ass!

link|flag
I just tried it out. It is a hammer!!! I love it!!! – Tom Schaefer Oct 3 at 11:05
vote up 2 vote down

I really like Propel, here you can get an overview, the documentation is pretty good, and you can get it through PEAR or SVN.

You only need a working PHP5 install, and Phing to start generating classes.

link|flag
vote up 2 vote down

PHP frameworks will show you many php frameworks,you will find what you want.

link|flag
vote up 1 vote down

I just started with Kohana, and it seems the closest to Rails without invoking all the complexity of multiple config files like with propel.

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

link|flag
vote up 1 vote down

Until PHP 5.3 release don't expect to have a good ORM. It's a OO limitation of PHP.

link|flag
So how would PHP 5.3 help someone write a better ORM? I don't see any reason. – Ionut G. Stan Mar 1 at 12:11
2  
the main reason is the introduction of late static binding ("static" keyword). read about it on blog.felho.hu/what-is-new-in-php-53-part-2-late-s… – knoopx Mar 7 at 11:51
vote up 0 vote down

Doctrine is probably your best bet. Prior to Doctrine, this was essentially the only other utility that's open sourced -- http://pear.php.net/package/DB_DataObject/

Good luck.

/sf

link|flag
vote up 0 vote down

You can check out Repose if you are feeling adventurous. Like Outlet, it is modeled after Hibernate.

It is still very early in its development, but so far the only restrictions on the domain model are that the classes are not marked final and properties are not marked private. Once I get into the land of PHP >= 5.3, I'll try to implement support for private properties as well.

link|flag
vote up 0 vote down

I am currently working on phpDataMapper, which is an ORM designed to have simple syntax like Ruby's Datamapper project. It's still in early development as well, but it works great.

link|flag
vote up 0 vote down

Give a shot to dORM, an object relational mapper for PHP 5. It supports all kinds of relationships (1-to-1), (1-to-many), (many-to-many) and data types. It is completely unobtrusive: no code generation or class extending required. In my opinion it is superior to any ORM out there, Doctrine and Propel included. However, it is still in beta and might change significantly in the next couple months. http://www.getdorm.com

It also has a very small learning curve. The three main methods you will use are:

<?php 
$object = $dorm->getClassName('id_here');
$dorm->save($object);
$dorm->delete($object);
link|flag
vote up 0 vote down

if you are looking for an ORM like hibernate, you should have look at PMO:

http://pmo.developpez.com

It can be easly integrate in an SOA architecture (only a webservice classe to develop)

link|flag
vote up 0 vote down

My friend Kien and I have improved upon an earlier version of an ORM that he had written prior to PHP 5.3. We have essentially ported over ActiveRecord on rails for PHP. It is still lacking some key features we want such as transactions, composite PK support, a few more adapters (only mysql/sqlite3 work right now). But, we are very close to finishing this stuff up. You can take a look here:

http://www.derivante.com/2009/05/14/php-activerecord-with-php-53/

link|flag
vote up 0 vote down

Unfortunately both Doctrine and Propel require PDO and don't support legacy database access methods, but my host doesn't enable pdo_mysql :((((((((((((((((. Any PHP ORM that supports legacy access methods?

link|flag
Please, please, please drop your host. Don't support hosting companies who think that PHP without pdo_mysql is a reasonable platform. – steveth45 Oct 1 at 20:46
vote up 0 vote down

Try PHP adodb I cant say it's the best because I havent use the others. But it's fast, it supports memcached, and supports caching. and it's waaaay faster than Zend's DB/Select

link|flag
vote up 0 vote down

PHP ORM Faces For PDO extension PHP Faces Framework

$urun = new Product();
$urun->name=”CPU”
$urun->prince=”124”;
$urun->save();
link|flag

Your Answer

Get an OpenID
or

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