Skip to content

Repository files navigation

Arrayable

Latest Stable VersionBuild StatusCoverage StatusQuality ScorePHPStanTotal DownloadsSoftware License

Motivation

Unfortunately PHP does not have a nice way how to typecast objects to array.

There is the __toString() magic method for \Stringable interface (since PHP 8.0) and the jsonSerialize() method for \JsonSerializable interface (since PHP 5.4), but __toArray() method is not (and will not) be supported – there are just several rejected draft RFC (object_cast_to_types, to array, ...) that suggests some kind of object to scalar type casting.

But so far (at least) there is no way to implement some (not even magic) method to be called when cast to array.

Ideally, something like this would work:

class Person
{
publicfunction__construct(
publicstring$name,
protectedstring$username,
privatestring$password,
) {}
publicfunction__toArray(): array
{
return [
'name' => $this->name,
'email' => $this->username,
];
}
}
$person = newPerson('John Doe', 'j.doe@example.com', 'secret_pwd');
$personArray = (array) $person; // casting triggers __toArray()/**var_dump($personArray);[ 'name' => 'John Doe' 'email' => 'j.doe@example.com']*/

but actually it cast to array like this:

/**var_dump($personArray);[ 'name' => 'John Doe' '*username' => 'j.doe@example.com' 'Person@password' => 'secret_pwd']*/

Usage example

All the code snippets shown here are modified for clarity, so they may not be executable.

This package implements simple \Arrayable (or \Inspirum\Arrayable\Arrayable) interface.

/** @implements \Arrayable<string, string> */class Person implements \Arrayable
{
publicfunction__construct(
publicstring$name,
protectedstring$username,
protectedstring$password,
) {}
/** @return array<string, string> */publicfunction__toArray(): array
{
return [
'name' => $this->name,
'email' => $this->username,
];
}
}
$person = newPerson('John Doe', 'j.doe@example.com', 'secret_pwd');

There is \is_arrayable() function (or \Inspirum\Arrayable\Convertor::isArrayable() method) to check if given data are able to type cast itself to array.

var_dump(\is_arrayable([1, 2, 3])); // bool(true)var_dump(\is_arrayable(new \ArrayIterator([1, 2, 3]))); // bool(true)var_dump(\is_arrayable(new \ArrayObject([4, 5, 6]))); // bool(true)var_dump(\is_arrayable((function () { yield1; })())); // bool(true)var_dump(\is_arrayable(1)); // bool(false)var_dump(\is_arrayable(new \stdClass())); // bool(false)var_dump(\is_arrayable(newclass {})); // bool(false)var_dump(\is_arrayable(newclassimplements \Arrayable {})); // bool(true)var_dump(\is_arrayable($person); // bool(true)

Then there is \to_array() function (or \Inspirum\Arrayable\Convertor::toArray() method) to recursively cast data to array.

$data = \to_array(new \ArrayIterator([1, $person, (object) ['a' => true]]));
/**var_dump($data);[ 0 => 1 1 => [  'name' => 'John Doe' 'email' => 'j.doe@example.com' ] 2 => [ 'a' => true ]*/

There is also helper abstract classes for common use for DAO (BaseModel) and collection (BaseCollection) objects.

System requirements

Installation

Run composer require command

$ composer require inspirum/arrayable

Testing

To run unit tests, run:

$ composer test:test

To show coverage, run:

$ composer test:coverage

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

If you discover any security related issues, please email tomas.novotny@inspirum.cz instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

PHP Arrayable interface with to-array method.

Topics

Resources

Code of conduct

Contributing

Stars

2 stars

Watchers

0 watching

Forks

Releases

Used by

Contributors

Languages