Using built-in functions as callbacks

suggest change

In functions taking callable as an argument, you can also put a string with PHP built-in function. It’s common to use trim as array_map parameter to remove leading and trailing whitespace from all strings in the array.

$arr = ['   one  ', 'two   ', '   three'];
var_dump(array_map('trim', $arr));

// array(3) {
//   [0] =>
//   string(3) "one"
//   [1] =>
//   string(3) "two"
//   [2] =>
//   string(5) "three"
// }

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Functional programming:
* Using built-in functions as callbacks
* Scope

Table Of Contents
2 Arrays
3 Functional programming
4 Types
10 Cookies
14 JSON
15 SOAP
17 cURL
19 XML
21 Traits
35 UTF-8
36 URLs
38 PHPDoc
41 Loops
44 Closur
72 YAML
77 Cache
78 Streams
81 PDO
82 SQLite3
83 Sockets
87 MongoDB
93 IMAP
94 Redis
95 Imagick
102 APCu
108 PSR