Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Test

<?php
$array = array(4, 6, 2, 1, 3, 0, 9, 8, 7, 5);
$newarray = array();
$x = 0;
$lowest = 900;



foreach ($array as $arraymember){
    if ($lowest --> $arraymember){
        
        $lowest = $arraymember;
        
    }
    echo $arraymember;
    echo "\n";
}



echo $lowest;

?>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.