Mahn
Mahn

Reputation: 16595

Is there something like jLinq for PHP?

I just came across jLinq, a JS library to query data (e.g. arrays) in a similar fashion to that of a Relational DB, and it just occurred to me that a library to query data like this in PHP would be extremely handy to work with cached subsets of a RDBMS where the cache itself has no querying capabilities, such as APC or memcached.

I'm aware there's no magic behind the library and "querying" the data can technically be done with raw PHP, but it seems more natural to query data with a syntax like that of jLinq.

Upvotes: 0

Views: 120

Answers (2)

Ben Ripley
Ben Ripley

Reputation: 2145

There are several. Have a look at:

PHPLinq

LinqForPHP

Phinq

Upvotes: 2

DaneSoul
DaneSoul

Reputation: 4511

Look at Yii framework (PHP-based) - it have wery complex tools for working with data-bases.

Upvotes: 2

Related Questions