Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php $a=array("a"=>"rouge","b"=>"vert","c"=>"bleu","d"=>"jaune","e"=>"marron"); print_r(array_slice($a,1,2)); $a=array("0"=>"rouge","1"=>"vert","2"=>"bleu","3"=>"jaune","4"=>"marron"); print_r(array_slice($a,1,2)); ?> </body> </html>