Question:Which of the following is not valid syntax for creating a new array key?
A $a[] = "value"; B $a{} = "value"; C $a[0] = "value"; D $a{0} = "value"; E $a[$b = 0] = "value";
+ AnswerB
+ Report