Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ElGigi committed Jan 10, 2022
1 parent 634bf7e commit 4472b85
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,17 @@ Many PHP functions used in the Berlioz framework, which you can use in your deve

## Array

- `b_array_is_sequential(array $array): bool`
- `b_array_is_list(array $array): bool`

Is sequential array?

- `b_array_column(array $array, int|string|\Closure|null $column_key, int|string|\Closure|null $index_key = null): array`

Get values from a single column in the input array.

Difference between native array_column() and b_array_column() is
that b_array_column() accept a \Closure in keys arguments.

- `b_array_merge_recursive(array $arraySrc, array ...$arrays): array`

Merge two or more arrays recursively.
Expand Down

0 comments on commit 4472b85

Please sign in to comment.