Insira o par de valores-chave no PHP da matriz
// If you are creating new array then try this :
$arr = array("key" => "value");
// And if array is already created then try this :
$arr["key"] = "value";
Code Phantom