Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's a good PHP Active Record library? [closed]

I've been using CodeIgniter for some quite time, and I've been extremely happy with its Active Record stuff. It's great to query the database with it.

Recently I've started a new project and I can't use such a framework anymore.

Is there a simple PHP Active Record library that does its job and gets out of the way (similar to CodeIgniter's version)?

like image 830
Luca Matteis Avatar asked Sep 09 '25 23:09

Luca Matteis


1 Answers

Are you explicitly looking for an implementation of the Active Record pattern?

If not you might want to look into an object-relational mapper (ORM), such as Doctrine or Propel. See also this question on SO.

like image 117
middus Avatar answered Sep 12 '25 14:09

middus