Show sourcecode
The following files exists in this folder. Click to view.
upg1.php
upg2.php
upg3.php
upg4.php
upg5.php
upg6.php
upg6.php
23 lines ASCII Windows (CRLF)
<?php
$array = [1, 2, 3, 4, 6, 3, 4, 7, 9, 10];
function Tonfisk(&$array){
for ($i = 0; $i < count($array); $i++) {
if ($array[$i] % 2 == 0) {
$array[$i] = 0;
}
}
}
echo implode(",", $array);
Tonfisk($array);
echo implode(",", $array);
?>