drewlabs / php-value
PHP object builder and serialization library
v0.3.10
2024-10-04 11:33 UTC
Requires
- php: ^7.2|^8.0
- drewlabs/core-helpers: ^0.3
- symfony/polyfill-php81: ^1.24
Requires (Dev)
- drewlabs/collections: ^0.3.0
- phpunit/phpunit: ^9.5
README
The library provides utility objects for PHP application and projects.
Usage
The library offer two interface for creating an object.
Your can use OOP implementation you can extends the abstract [Drewlabs\PHPValue\Value] class:
- Object oriented implementation
use Drewlabs\PHPValue\ObjectAdapter; class ValueStub extends ObjectAdapter { protected $__PROPERTIES__ = [ 'name', 'address', ]; } // Creating instance $value = new ValueStub([ 'name' => 'Azandrew', 'address' => '288 Avenue Pia, Lome' ]);
Or using the [Drewlabs\PHPValue\Functions\CreateValue] function.
- Functional interface
// Imports use function Drewlabs\PHPValue\Functions\CreateAdapter; $value = CreateAdapter([ // dynamic properties 'name', 'address' ]);
Using both ways, you create an instance of [\Drewlabs\PHPValue\Value] class.
- Creating a copy of the object
// Imports use function Drewlabs\PHPValue\Functions\CreateAdapter; $value = CreateAdapter([ // dynamic properties 'name', 'address' ]); // This tries to create a deep copy of the object $value1 = $value->copy([ 'name' => 'Sidoine Azandrew' ]);
- Getting property of the object
The value object is Array accessible meaning we can user [] operator to acces object properties. It also overrides magic [__get] method for properties accesibility and offers a [getAttribute()] method that query for a property on the object
// Imports use function Drewlabs\PHPValue\Functions\CreateAdapter; $value = CreateAdapter([ // dynamic properties 'name', 'address' ]); $result = $value['name']; // Same as $result = $value->name; // Same as $result = $value->getAttribute('name');