Quick actions

cmd+k|ctrl+k

Navigation

Languages

Contoh Perulangan For

Snippet info

Language

Php

Visibility

public

Author

ubaidillah.hf

Created

2022-07-02T02:36:19.275525Z

Updated

2022-07-02T02:36:19.275525Z

<?php

// # Variabel Primitif
// $angka = ["joko", 10, true, NULL,"rafif"];

// echo $angka[4];

for($i=0;$i<10;$i++){
    echo "aku adalah perulangan ke-".$i;
    echo "\n";
    echo "tes\n";
}

INFO