2017 © Pedro Peláez
 

library mdarray

Multi-dimensial array utils

image

quazisoft/mdarray

Multi-dimensial array utils

  • Saturday, December 27, 2014
  • by Quazer
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

php-mdarray

Installation

Add the package to your composer.json and run composer update., (*1)

{
    "require": {
        "quazisoft/mdarray": "*"
    }
}

Basic Usage

Example, (*2)

$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

The Versions

27/12 2014

dev-master

9999999-dev

Multi-dimensial array utils

  Sources   Download

MIT

by Victor Borisov

array data