+ 1
Which syntax corresponds to the associative array?
3 Respuestas
+ 2
PHP it's like [key=> value, key2=>value2]
+ 9
An associative array can define key value pairs, like this
$power = array( 'camaro'=>426, 'mustang'=>435, 'challenger'=>485 );
0
=>