quazisoft / mdarray
Multi-dimensial array utils
dev-master
2014-12-27 18:46 UTC
This package is not auto-updated.
Last update: 2026-04-21 15:10:07 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