PHP code example of stratdes / vo
1. Go to this page and download the library: Download stratdes/vo 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/ */
stratdes / vo example snippets
use StraTDeS\VO\Single\Currency;
use StraTDeS\VO\Single\Money;
use StraTDeS\VO\Single\Name;
use StraTDeS\VO\Single\Description;
use StraTDeS\VO\Single\PhoneNumber;
$name = Name::fromValue("John Smith");
$description = Description::fromValue("This is a description");
$money = Money::create(
20034,
Currency::fromValue(Currency::USD)
);
$phoneNumber = PhoneNumber::create("34", "938140000");
use StraTDeS\VO\Collection\EmailCollection;
use StraTDeS\VO\Single\Email;
$emailCollection = EmailCollection::create();
$emailCollection->add(Email::fromValue('[email protected]'));
$emailCollection->add(Email::fromValue('[email protected]'));
$emailCollection->add(Email::fromValue('[email protected]'));
foreach($emailCollection as $email) {
echo $email->value() . "\n\r";
}