1. Go to this page and download the library: Download astandkaya/type-moon-array 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/ */
astandkaya / type-moon-array example snippets
composer
php
use TypeMoonArray\TmArray;
// OK (array of int only)
$tm_array = new TmArray( 'int', range(1,10), true );
// OK (array of int and [0 <= $variable <= 100] )
class MyClass implements \TypeMoonArray\Types\Type
{
public static function checkType( mixed $variable ) : bool
{
return $variable == (int)$variable && 0 <= $variable && $variable <= 10;
}
public static function normalizeType( mixed $variable ) : mixed
{
return (int)$variable;
}
}
$tm_array = new TmArray( MyClass::class, range(1,10) );
// OK (array of int and [0 <= $variable <= 100] )
$tm_array = new TmArray(
fn ($v) => $v == (int)$v && 0 <= $v && $v <= 10,
range(1,10),
);