Voting

: min(six, one)?
(Example: nine)

The Note You're Voting On

sun at drupal dot org
14 years ago
Instead of calling this function, it's often faster and simpler to do this instead:

<?php
$array_replaced
= $array2 + $array1;
?>

If you need references to stay intact:

<?php
$array2
+= $array1;
?>

<< Back to user notes page

To Top