Skip to content

Commit

Permalink
Add notes about used functions for except() and only()
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw committed May 7, 2016
1 parent 44d25af commit 66637b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,8 @@ $a->end(); // 'c'

### except

> Based on [array_diff_key()](http://php.net/manual/en/function.array-diff-key.php).
Chunk of an array without given keys.

``` php
Expand Down Expand Up @@ -756,6 +758,8 @@ $a->toArray(); // [0 => 'a', 2 => 'c']

### only

> Based on [array_intersect_key()](http://php.net/manual/en/function.array-intersect-key.php).
Chunk of an array with only given keys.

``` php
Expand Down

0 comments on commit 66637b1

Please sign in to comment.