$club = array(array('Real Madrid', 'Barcelona', 'Atletico Madrid'),
array('Juventus', 'Inter MIlan', 'AC Milan'),
array('Manchester United', 'Liverpool', 'Chelsea'),
array('Peripura', 'Persib', 'Arema'));
//Contoh Klub dari spayol
echo $club[0][1]."\n";
//Contoh Klub dari Italia
echo $club[1][0]."\n";
//Contoh Klub dari Inggris
echo $club[2][2]."\n";
//Contoh Klub dari Indonesia
echo $club[3][1]."\n";
2 jempol
ZihxS
300
816
·
7 tahun, 3 bulan yang lalu
·
1 jempol
Lanjutkan ^_^