PHP code example of giann / trunk
1. Go to this page and download the library: Download giann/trunk 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/ */
giann / trunk example snippets
$trunk = new Trunk($data);
$this->assertTrue($trunk['astring'] instanceof Trunk);
$this->assertEquals($trunk['astring']->string(), 'hello world');
$this->assertEquals($trunk['anint']->int(), 12);
$this->assertEquals($trunk['alist']->listValue()[3]->string(), 'hello');
$this->assertEquals($trunk['amap']['hello']->string(), 'world');
$this->assertEquals($trunk['amap']['hello']['doesnexists']->data, null);
$this->assertTrue($trunk['anobject']->ofClass(Person::class) instanceof Person);
$this->assertEquals($trunk['anobject']->ofClass(Person::class)->name, 'joe');
$this->assertTrue($trunk['listofobject']->listOfClass(Person::class)[0] instanceof Person);
$this->assertEquals($trunk['listofobject']->listOfClass(Person::class)[0]->name, 'joe');
$this->assertTrue($trunk['mapofobject']->mapOfClass(Person::class)['joe'] instanceof Person);
$this->assertEquals($trunk['mapofobject']->mapOfClass(Person::class)['joe']->name, 'joe');
$this->assertTrue(
$trunk['transformlist']
->listOfClass(
Person::class,
fn ($el) => new Person($el)
)[0] instanceof Person
);
$this->assertTrue(
$trunk['transformmap']
->mapOfClass(
Person::class,
fn ($el) => new Person($el)
)['joe'] instanceof Person
);