From: [EMAIL PROTECTED]
Operating system: Windows 2000
PHP version: 4.0.4
PHP Bug Type: Arrays related
Bug description: Echo of type "array of array"...
$PHPsource = array(
"0" => array(
"foo" => "Hello",
"bar" => "World"
);
echo "Hello: $PHPsource[0][bar]";
Sould be:
"Hello: world"
But comes up:
"Hello: Array[bar]"
This is working:
echo "Hello: ".$PHPsource[0][bar];
It seems like inside the " there is a problem identifying varibels the right way.
--
Edit Bug report at: http://bugs.php.net/?id=8662&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]