https://github.com/alexandre-daubois/poq
Provides an object-oriented API to query in-memory collections in a SQL-style.
https://github.com/alexandre-daubois/poq
linq object php query
Last synced: about 2 months ago
JSON representation
Provides an object-oriented API to query in-memory collections in a SQL-style.
- Host: GitHub
- URL: https://github.com/alexandre-daubois/poq
- Owner: alexandre-daubois
- License: mit
- Created: 2022-07-03T19:35:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-04T14:41:28.000Z (almost 3 years ago)
- Last Synced: 2025-03-27T06:53:33.282Z (about 2 months ago)
- Topics: linq, object, php, query
- Language: PHP
- Homepage: https://packagist.org/packages/alexandre-daubois/poq
- Size: 702 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# POQ - PHP Object Query
[](https://php.net/)

[](https://packagist.org/packages/alexandre-daubois/poq)
[](https://packagist.org/packages/alexandre-daubois/poq)## Install
```bash
composer require alexandre-daubois/poq 1.0.0-beta2
```That's it, ready to go! 🎉
## Usage
Here is the set of data we're going to use in the follow examples:
```php
$cities = [
new City('Lyon', [
new Person([
new Child('Hubert', age: 30),
new Child('Aleksandr', age: 18),
new Child('Alexandre', age: 26),
new Child('Alex', age: 25),
], height: 181),
new Person([
new Child('Fabien', age: 23),
new Child('Nicolas', age: 8),
], height: 176),
new Person([
new Child('Alexis', age: 33),
new Child('Pierre', age: 5),
], height: 185)
], minimalAge: 21),
new City('Paris', [
new Person([
new Child('Will', age: 33),
new Child('Alix', age: 32),
new Child('Alan', age: 45),
], height: 185)
], minimalAge: 45)
];
```## The ObjectQuery object
The `ObjectQuery` object allows you to easily fetch deep information in your collections with ease. Just like Doctrine's `QueryBuilder`, plenty of utils methods are present for easy manipulation.
Moreover, you're able to create your query step-by-step and conditionally if needed. To create a simple query, all you need to do is call `ObjectQuery`'s `from` factory, and pass your collection as its source:
```php
use ObjectQuery\ObjectQuery;$query = ObjectQuery::from($this->cities, 'city');
```From here, you're able to manipulate your collections and fetch data. First, let's see how to filter your collections. Note that the `city` argument is optional and defines an alias for the current collection. By default, the alias is `_`. Each alias must be unique in the query, meaning it is mandatory you pass an alias if you are dealing with deep collections. Defining an alias allows you to reference to the object later in the query. See the `selectMany` operation explanation for more details.
## Modifiers (filtering, ordering, limiting, etc.)
Modifiers allow to filter results, order them, limit them and so on.
> 🔀 Modifiers can be given to the query in any order, as they are only applied when an operation is called.
### Where
#### Usage
`where`, which takes a callback as an argument. This callback must return a boolean value.
```php
use ObjectQuery\ObjectQuery;$query = (ObjectQuery::from($this->cities, 'city'))
->where(
function(City $city) {
return \str_contains($city->name, 'Lyon') || \in_array($city->name, ['Paris', 'Rouen']);
}
);
```### Order by
`orderBy`, which will order the collection. If the collection only contains scalar values, then you only have to pass an order. If your collection contains objects, you have to pass the order as well as the field to order on. Available orders are: `QueryOrder::Ascending`, `QueryOrder::Descending`, `QueryOrder::None` and `QueryOrder::Shuffle`.
```php
use ObjectQuery\ObjectQuery;
use ObjectQuery\ObjectQueryOrder;$query = (ObjectQuery::from($this->cities))
->orderBy(ObjectQueryOrder::Ascending, 'name');
```### Offset
`offset` modifier changes the position of the first element that will be retrieved from the collection. This is particularly useful when doing pagination, in conjunction with the `limit` modifier. The offset must be a positive integer, or `null` to remove any offset.
```php
use ObjectQuery\ObjectQuery;$query = ObjectQuery::from($this->cities);
// Skip the 2 first cities of the collection and fetch the rest
$query->offset(2)
->select();// Unset any offset, no data will be skipped
$query->offset(null)
->select();
```### Limit
The `limit` modifier limit the number of results that will be used by different operations, such as `select`. The limit must be a positive integer, or `null` to remove any limit.
```php
use ObjectQuery\ObjectQuery;$query = ObjectQuery::from($this->cities);
// Only the first 2 results will be fetched by the `select` operation
$query->limit(2)
->select();// Unset any limitation, all matching results will be used in the `select` operations
$query->limit(null)
->select();
```## Operations
Operations allow you to fetch filtered data in a certain format. Here is a list of the available operations and how to use them.
### Select
This is the most basic operation. It returns filtered data of the query. It is possible to pass the exact field we want to retrieve, as well as multiple fields. If no argument is passed to `select`, it will retrieve the whole object. You must not pass any argument when dealing with scalar collections.
```php
use ObjectQuery\ObjectQuery;$query = ObjectQuery::from($this->cities);
// Retrieve the whole object
$query->select();// Retrieve one field
$query->select('name');// Retrieve multiple fields
$query->select(['name', 'minimalAge']);
```### Select One
When querying a collection, and we know in advance that only one result is going to match, this could be redundant to use `select` and retrieve result array's first element everytime. `selectOne` is designed exactly for this case. The behavior of this operation is the following:
* If a single result is found, it will be returned directly without enclosing it in an array of 1 element.
* If no result is found, the `selectOne` operation returns `null`.
* If more than on result is found, then a `NonUniqueResultException` is thrown.```php
use ObjectQuery\Exception\NonUniqueResultException;$query = (ObjectQuery::from($this->cities, 'city'))
->where(fn($city) => $city->name === 'Lyon');try {
$city = $query->selectOne(); // $city is an instance of City// You can also query a precise field
$cityName = $query->selectOne('name'); // $cityName is a string
} catch (NonUniqueResultException) {
// ...
}
```### Select Many
This operation allows you to go deeper in a collection. Let's say your collection contains many objects with collections inside them, this is what you're going to use to fetch and filter collections.
Note that we defined an alias for city, **which allows to reference the parent city in the last `where` call**.
```php
use ObjectQuery\ObjectQuery;
use ObjectQuery\ObjectQueryContextEnvironment;$query = (ObjectQuery::from($this->cities, 'city'))
->where(fn($city) => \in_array($city->name, ['Paris', 'Rouen']))
->selectMany('persons', 'person')
->where(fn($person) => $person->height >= 180)
->selectMany('children', 'child')
->where(fn($child, ObjectQueryContextEnvironment $context) => \str_starts_with($child->name, 'Al') && $child->age >= $context->get('city')->minimalAge);
```Like `from`, `selectMany` also takes an alias as an argument. This way, you will be able to reference ancestors in your `where` calls, as shown in the above example.
### Count
This operation returns the size of the current filtered collection:
```php
$query = ObjectQuery::from($this->cities);$query->count();
```### Concat
This operation will concatenate the collection with a given separator. If you're dealing with a scalar collection, there is no mandatory argument. If dealing with collections of objects, the `field` argument must be passed.
```php
$query = ObjectQuery::from($this->cities);$query->concat(', ', 'name');
```### Each
This operation allows you to pass a callback, which will be applied to each element of the filtered collection. You can see this as a `foreach`.
```php
$query = ObjectQuery::from($this->cities);// Append an exclamation point to every city name
$query->each(fn($element) => $element->name.' !');
```### Min and Max
These operations will return the maximum and the minimum of the collection. You can use this on scalar collections. Internally, these operations use `min()` and `max()` functions of the Standard PHP Library, so the same rules apply.
```php
use ObjectQuery\ObjectQuery;$query = (ObjectQuery::from($this->cities))
->selectMany('persons', 'person')
->selectMany('children', 'child');$query->min('age'); // 5
$query->max('age'); // 45
$query->min('name'); // "Alan"
$query->max('name'); // "Will"
```### Sum
`sum` returns the sum of a collection. If the collection contains objects, a field must be provided in order to calculate the sum of it. This only works with collections of numerics, and an exception is thrown if any item of the collection returns `false` to the `\is_numeric()` function.
```php
use ObjectQuery\ObjectQuery;$query = (ObjectQuery::from($this->cities))
->selectMany('persons', 'person')
->selectMany('children', 'child');$query->sum('age');
```### Average
`average` returns the average of a collection. If the collection contains objects, a field must be provided in order to calculate the average of it. This only works with collections of numerics, and an exception is thrown if any item of the collection returns `false` to the `\is_numeric()` function.
```php
use ObjectQuery\ObjectQuery;$query = (ObjectQuery::from($this->cities))
->selectMany('persons', 'person')
->selectMany('children', 'child');$query->average('age');
```