I know that it's more performant to use '' delimited strings rather than ""...
but I was wondering if there's any performance improvemente doing this
$a = array( 'table' => 'myTable', 'order' => 'myOrder' );
$table = $a['table']
instead of
$a = array( table => 'myTable', order => 'myOrder' );
$table = $a[table]
I guess so, but just wanted to know your opinion...