Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Array_Map using multiple native callbacks?

I want to run 3 native functions on the same array: trim, strtoupper and mysql_real_escape_string. Can this be done?

Trying to pass an array as a callback like this isn't working:

$exclude = array_map(array('trim','strtoupper','mysql_real_escape_string'), explode("\n", variable_get('gs_stats_filter', 'googlebot')));

Although this works fine because it's only using one native function as the callback:

$exclude = array_map('trim', explode("\n", variable_get('gs_stats_filter', 'googlebot')));
like image 441
J. Scott Elblein Avatar asked Jan 06 '12 23:01

J. Scott Elblein


3 Answers

You'll have to do it like this:

$exclude = array_map(function($item) {
    return mysql_real_escape_string(strtoupper(trim($item)));
}, explode("\n", variable_get('gs_stats_filter', 'googlebot')));
like image 103
Tim Cooper Avatar answered Nov 16 '22 10:11

Tim Cooper


You could also do something like:

  $exclude = array_map(function($item) {
     return trim(strtoupper(mysql_real_escape_string($item)));
  }, explode(...));

or something. Pass in an anonymous function that does all that stuff.

Hope that helps.

Good luck :)

like image 5
Jemaclus Avatar answered Nov 16 '22 10:11

Jemaclus


Yes, just pass the result of one mapping into another:

$result = array_map(
    'mysql_real_escape_string',
    array_map(
        'trim',
        array_map(
            'strtoupper',
            $your_array
        )
    )
);

You can also use a callback in PHP 5.3+:

$result = array_map(function($x){
    return mysql_real_escape_string(trim(strtoupper($x)));
}, $your_array);

or earlier (in versions of PHP lower than 5.3):

$result = array_map(
    create_function('$x','return mysql_real_escape_string(trim(strtoupper($x)));'),
    $your_array
);
like image 5
Tadeck Avatar answered Nov 16 '22 11:11

Tadeck