PHP code example of astandkaya / type-moon-array

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),
);

 php
use TypeMoonArray\TmArray;

$tm_array = new TmArray( 'int', range(1,3) );
$tm_array->unshift(0);
$tm_array->push(4);

$tm_array->get(); // [0,1,2,3,4]


$tm_array = new TmArray( 'int', array_combine( range('a','c'), range(1,3) ) );
$tm_array->push( 4, 'd');

$tm_array->get('d'); // 4

 php
use TypeMoonArray\TmArray;

$tm_array = new TmArray( 'int', range(1,5) );
$tm_array->closure( fn( $arr ) => array_reverse( $arr ) );

$tm_array->get(); // [5,4,3,2,1]


$tm_array = new TmArray( 'int', range(1,5) );
$tm_array->closure( 'array_reverse' );

$tm_array->get(); // [5,4,3,2,1]


$tm_array = new TmArray( 'int', range(1,5) );
$tm_array->closureRef( 'array_multisort', SORT_DESC );

$tm_array->get(); // [5,4,3,2,1]

 php
TmArray::getTypeAlias();