>
> Is that creating an instance of the class name stored in the 0th index of
> the array $var or is it creating an instance of the class name stored in
> $var and accessing the 0th index using ArrayAccess?
>

As soon as $var gets involved, it should be prioritized above the new
operator. So it's equivalent of "new ($var[0])"

Jaroslav

Reply via email to