Please tell me how to create an array in PHP and declare it as we are doing in VB.

VB examples
dim a(2) as string

a(0)="Hello"
a(1)="World"

PHP examples
????

I would like to do the exactly same thing in PHP. Is it possible ?

If yes, then please show it to me.

If no, then please provide the remedy.