Fixed incorrect array_map example
This commit is contained in:
parent
e738aa286a
commit
3617703f3a
|
@ -17,8 +17,14 @@ then use it with any array_* function.
|
||||||
```php
|
```php
|
||||||
$arrObj->array_keys();
|
$arrObj->array_keys();
|
||||||
$arrObj->array_values();
|
$arrObj->array_values();
|
||||||
$arrObj->array_map(function($arr) { return array_keys($arr); });
|
$arrObj->array_map(
|
||||||
|
function($value) {
|
||||||
|
print sprintf("%s\n", $value);
|
||||||
|
}
|
||||||
|
);
|
||||||
```
|
```
|
||||||
|
array_map(function($value) {
|
||||||
|
print sprintf("%s\n", $value); }, $arr));
|
||||||
use the normal `\ArrayObject` methods
|
use the normal `\ArrayObject` methods
|
||||||
```php
|
```php
|
||||||
$arrObj->exchangeArray($myNewArray);
|
$arrObj->exchangeArray($myNewArray);
|
||||||
|
@ -28,3 +34,4 @@ MIT
|
||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
Finish writing the rest of the tests for array_* functions
|
Finish writing the rest of the tests for array_* functions
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue