2017 © Pedro Peláez
 

yii2-extension yii2-helpers

Collection of useful helper functions for Yii Framework 2.0

image

yii2mod/yii2-helpers

Collection of useful helper functions for Yii Framework 2.0

  • Tuesday, November 22, 2016
  • by disem
  • Repository
  • 4 Watchers
  • 9 Stars
  • 12,199 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 8 Versions
  • 17 % Grown

The README.md

Yii2 Helpers

This extension is a collection of useful helper functions for Yii Framework 2.0., (*1)

Latest Stable Version Total Downloads License Build Status, (*2)

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

php composer.phar require --prefer-dist yii2mod/yii2-helpers "*"

or add, (*5)

"yii2mod/yii2-helpers": "*"

to the require section of your composer.json file., (*6)

Available Methods

  1. add()
  2. average()
  3. collapse()
  4. except()
  5. has()
  6. first()
  7. flatten()
  8. last()
  9. only()
  10. pluck()
  11. prepend()
  12. pull()
  13. set()
  14. sort()
  15. sortRecursive()
  16. where()
  17. xmlStrToArray()

Method Listing

add()

Add a given key / value pair to the array if the given key doesn't already exist in the array:, (*7)

$array = ArrayHelper::add(['card' => 'Visa'], 'price', 200);
// ['card' => 'Visa', 'price' => 200]

average()

Get the average value of a given key:, (*8)

ArrayHelper::average([1, 2, 3, 4, 5]);
// 3

You may also pass a key to the average method:, (*9)

$array = [
   ['score' => 10],
   ['score' => 30],
   ['score' => 50],
];

ArrayHelper::average($array, 'score');

// 30

collapse()

Collapse an array of arrays into a single array:, (*10)

$array = ArrayHelper::collapse([[1, 2, 3], [4, 5, 6]]);

// [1, 2, 3, 4, 5, 6]

except()

Get all of the given array except for a specified array of items:, (*11)

$array = ['name' => 'Desk', 'price' => 100];

$array = ArrayHelper::except($array, ['price']);

// ['name' => 'Desk']

has()

Check if an item exists in an array using "dot" notation:, (*12)

$array = ['products' => ['desk' => ['price' => 100]]];

$hasDesk = ArrayHelper::has($array, 'products.desk');

// true

first()

Return the first element in an array passing a given truth test:, (*13)

$array = [100, 200, 300];
$value = ArrayHelper::first($array); // 100

// or apply custom callback

$value = ArrayHelper::first($array, function($key, $value) {
      return $value >= 150; // 200
});

flatten()

Flatten a multi-dimensional array into a single level:, (*14)

$array = ['name' => 'Bob', 'languages' => ['PHP', 'Python']];

$array = ArrayHelper::flatten($array);

// ['Bob', 'PHP', 'Python'];

last()

Return the last element in an array passing a given truth test:, (*15)

$array = [100, 200, 300];
$value = ArrayHelper::last($array); // 300

// or apply custom callback

$value = ArrayHelper::last($array, function($key, $value) {
      return $value; // 300
});

only()

Get a subset of the items from the given array:, (*16)

$array = ['name' => 'Desk', 'price' => 100, 'orders' => 10];

$array = ArrayHelper::only($array, ['name', 'price']);

// ['name' => 'Desk', 'price' => 100]

prepend()

Push an item onto the beginning of an array:, (*17)

$array = ['one', 'two', 'three', 'four'];

$array = ArrayHelper::prepend($array, 'zero');

// $array: ['zero', 'one', 'two', 'three', 'four']

pluck()

The function retrieves all of the collection values for a given key:, (*18)

$array = [
   ['product_id' => 'prod-100', 'name' => 'Desk'],
   ['product_id' => 'prod-200', 'name' => 'Chair'],
];


$plucked = ArrayHelper::pluck($array, 'name');

// ['Desk', 'Chair']

You may also specify how you wish the resulting collection to be keyed:, (*19)

$plucked = ArrayHelper::pluck($array, 'name', 'product_id');

// ['prod-100' => 'Desk', 'prod-200' => 'Chair']

pull()

Get a value from the array, and remove it:, (*20)

$array = ['name' => 'Desk', 'price' => 100];

$name = ArrayHelper::pull($array, 'name');

// $name: Desk

// $array: ['price' => 100]

set()

Set an array item to a given value using "dot" notation:, (*21)

$array = ['products' => ['desk' => ['price' => 100]]];

ArrayHelper::set($array, 'products.desk.price', 200);

// ['products' => ['desk' => ['price' => 200]]]

sort()

Sort the array using the given callback:, (*22)

$array = [
    ['name' => 'Desk'],
    ['name' => 'Chair'],
];

$array = ArrayHelper::sort($array, function ($value) {
    return $value['name'];
});

/*
    [
        ['name' => 'Chair'],
        ['name' => 'Desk'],
    ]
*/

sortRecursive()

Recursively sort an array by keys and values:, (*23)

$array = [
      [
          'Desc',
          'Chair',
      ],
      [
          'PHP',
          'Ruby',
          'JavaScript',
      ],
];

$array = ArrayHelper::sortRecursive($array);

/*
  [
      [
         'Chair',
         'Desc',
      ],
      [
         'JavaScript',
         'PHP',
         'Ruby',
      ]
  ];
*/

where()

Filter the array using the given Closure.:, (*24)

$array = ["100", 200, "300"];
$value = ArrayHelper::where($array, function($key, $value) {
   return is_string($value);
});
// Will be return Array ( [0] => 100 [2] => 300 );

xmlStrToArray()

Convert xml string to array., (*25)

$xml = '
          <root>
            <id>1</id>
            <name>Bob</name>
          </root>';

ArrayHelper::xmlStrToArray($xml)

// ['id' => 1, 'name' => 'Bob']

StringHelper

  • StringHelper::removeStopWords('some text'); - remove stop words from string
  • StringHelper::removePunctuationSymbols('some text'); - Remove punctuation symbols from string

The Versions

22/11 2016

dev-master

9999999-dev

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Igor Chepurnoy

yii2 yii2 helpers yii2 array helpers

22/11 2016

1.3

1.3.0.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Igor Chepurnoy

yii2 yii2 helpers yii2 array helpers

08/07 2016

1.2

1.2.0.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2

05/07 2016

1.1

1.1.0.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2

21/04 2016

1.0.3

1.0.3.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2

19/04 2016

1.0.2

1.0.2.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2

18/04 2016

1.0.1

1.0.1.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2

02/09 2015

1.0

1.0.0.0

Collection of useful helper functions for Yii Framework 2.0

  Sources   Download

MIT

by Igor Chepurnoy

extension yii2