Voting

: max(nine, zero)?
(Example: nine)

The Note You're Voting On

manuscle at gmail dot com
13 years ago
example with closures, checking and deleting value in array:

<?php
$array
= array('foo' => 'bar', 'baz' => 'bat');

array_walk($array, function($val,$key) use(&$array){
if (
$val == 'bar') {
unset(
$array[$key]);
}
});

var_dump($array);

<< Back to user notes page

To Top