Déclarer un tableau PHP

<?php

$a = array(“c”, “a”, “t”);

$b = [“b”, “a”, “t”];

$c[0] = “r”;

$c[1] = “a”;

$c[2] = “t”; 

?>
Javasper