A PHP sub library for the Mossengine/Helper library that provides Array helper functions
This library can be used on it's own, however, it is intended to be used with the Mossengine/Helper library.
There is a group of Array type classes with single methods within that single out logic only needed for the given use, you can call them directly or using the Mossgnein Helper you can call into them simply without needing to use them in your project.
$ composer require mossengine/helpersarray
{
"require": {
"mossengine/helpersarray": "~1.0.0"
}
}
// Require the autoloader, normal composer stuff
require 'vendor/autoload.php';
// Direct usage ( not intended )
$result = Mossengine\Helpers\_Array\_IsAssociative::_IsAssociative(['a' => 'A']);
// Mossengine Helper usage ( intended )
$result = Mossengine\Helper::Array()->IsAssociative(['a' => 'A']);
Read the docs for more details on Helpers Array methods.