Download the PHP package astandkaya/type-moon-array without Composer
On this page you can find all versions of the php package astandkaya/type-moon-array. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download astandkaya/type-moon-array
More information about astandkaya/type-moon-array
Files in astandkaya/type-moon-array
Package type-moon-array
Short Description This library provides wrapper classes for arrays that allow you to specify element types and conditions.
License MIT
Informations about the package type-moon-array
type-moon-array
This library provides wrapper classes for arrays that allow you to specify element types and conditions.
Installation
Usage
Decleare
First argument is required. Specify "character string indicated in Type alias", "Closure", or "class with \TypeMoonArray\Types\Type as parent".
Second argument is optional. Specifies the initial element of the array.
Third argument is optional. Specify false to prohibit array operations other than the constructor.
Type alias : bool
,int
,float
,string
,array
,object
,null
,mixed
Get & Set
You can get all elements or element corresponding to the key with the get()
.
and, you can also get a key list with the getKeys()
.
You can add elements to the array using push()
or unshift()
.
and, you can optionally specify a key as the second argument.
Edit
Array operations can be performed by specifying a closure or function name in closure()
or closureRef()
.
Edit type alias
You can check the registered key at getTypeAlias()
.
To register an alias using registerTypeAlias()
, set the key as the first argument and the path of the class that extends \TypeMoonArray\Types\Type
as the second argument.
Attempting to register a key that has already been registered will result in an exception.
To re-register a registered key, set the third argument to true.
TmArray Methods
-
function __construct( protected \Closure|string $type, protected array $array = [], protected bool $is_writable = true )
-
get( ?string $key = null ) : mixed
-
getKeys() : array
-
convertType( string $type ) : void
-
closure( \Closure|string $func, mixed ...$args ) : array
-
closureRef( \Closure|string $func, mixed ...$args ) : array
-
push( mixed $value, ?string $key = null ) : void
-
unshift( mixed $value, ?string $key = null ) : void
-
static registerTypeAlias(string $key, string $type, bool $overwrite = false): void
-
static getTypeAlias(): array
static getTypeAliasKeys(): array