You Now Here »

tutorial basic PHP foreach perulangan array yang mempunyai nilai  (Read 2127 times - 55 votes) 

DANNY

G-Plus Author
  • ADMINISTRATOR
  • More Share Forum Topic
  • [MS] kepala suku
  • *
  • DANNY sangat terkenal!DANNY sangat terkenal!DANNY sangat terkenal!DANNY sangat terkenal!DANNY sangat terkenal!DANNY sangat terkenal!
  • Rep Power: 6
  • Join: September 30, 2009
  • Posts: 11,931
  • Poin: 193.409
    • WWW
  • IP member tracker Logged


foreach

Perulangan untuk array yang mempunyai nilai

Sintaks :

Quote
Code: [Select]
foreach (array as $value){
    statement
}
atau
foreach (array as $key => $value){
    statement
}
Contoh :

Quote
Code: [Select]
<?php
$arr 
= array("satu""dua""tiga");

foreach(
$arr as $key => $value) {
    echo 
"Key: $key; Value: $value<br />\n";
}
?>

thanx to
  :beer:


View Mobile Web Short URL: