2017 © Pedro Peláez
 

library array-utils

PHP array utils functions

image

lag/array-utils

PHP array utils functions

  • Monday, December 21, 2015
  • by lutangar
  • Repository
  • 2 Watchers
  • 2 Stars
  • 3,831 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

array-utils

PHP array utils functions, (*1)

This component provide a PHP static class for array utils functions and expose these as regular PHP functions., (*2)

Static class usage:, (*3)

use
...
$array = [1, 2, [1, 2, 3, 4]];
$arrayAsString = ArrayUtils::recursiveImplode(', ', $array);
// 1, 2, 1, 2, 3, 4
...

Regular function usage:, (*4)

$array = [1, 2, [1, 2, 3, 4]];
$arrayAsString = recursiveImplode(', ', $array);
// 1, 2, 1, 2, 3, 4

The Versions

21/12 2015

dev-master

9999999-dev https://github.com/larriereguichet

PHP array utils functions

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Arnaud Frezet
by Johan Dufour

array utils recursive implode

11/12 2015

0.1

0.1.0.0 https://github.com/larriereguichet

PHP array utils functions

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Arnaud Frezet
by Johan Dufour

array utils recursive implode