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

Search for the city in country>state->city multidimensional array

<html>
<head>
<title>Online PHP Script Execution</title>
</head>
<body>
<?php
   $arr = [
       'Country1'=>
            ['state1'=> ['city1','city2','city3'], 
             'state2'=> ['city4','city5'] ],
      'Country2'=> ['state3' => ['city6','city7'] ]
      ];
foreach($arr as $key => $value){
// echo $key;echo "<br/>";
  foreach( $value as $k => $v ){
      // echo $k;echo "<br/>";
       foreach( $v as $k1 => $v1 ){
      if( $v1 == 'city6'){
         echo "FOUND city= ".$v1." COUNTRY =".$key."STATE = ".$k;echo "<br/>";
      }
    }
    }
  
}
?>
</body>
</html>

Advertisements
Loading...

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