1. Go to this page and download the library: Download inspirum/arrayable library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
inspirum / arrayable example snippets
class Person
{
public function __construct(
public string $name,
protected string $username,
private string $password,
) {}
public function __toArray(): array
{
return [
'name' => $this->name,
'email' => $this->username,
];
}
}
$person = new Person('John Doe', '[email protected]', 'secret_pwd');
$personArray = (array) $person; // casting triggers __toArray()
/**
var_dump($personArray);
[
'name' => 'John Doe'
'email' => '[email protected]'
]
*/