quazisoft / mdarray
Multi-dimensial array utils
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/quazisoft/mdarray
This package is not auto-updated.
Last update: 2025-12-30 13:51:20 UTC
README
Installation
Add the package to your composer.json and run composer update.
{
"require": {
"quazisoft/mdarray": "*"
}
}
Basic Usage
Example
$array = array(array(1.1,1.2,null), array(2.1,2.2,null)); $isNull = MD2ArrayUtils::isNullRow($array, 0); // $isNull === false $isNull = MD2ArrayUtils::isNullRow($array, 1); // $isNull === false $isNull = MD2ArrayUtils::isNullRow($array, 2); // $isNull === true