![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiveRe: $request problem
From: ColdShine <coldshine_nounderscores_@hotmail.com>
Date: Sat Mar 11 2006 - 15:28:49 CET
Jerry Stuckle in news:WvadnQQMO-tzxI_ZRVn-gw@comcast.com wrote:
> Norman Peelman wrote:
No E_NOTICE at all.
http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing.complex
There's no clear example stating this, but:
echo "$array[key]";
Is EXACTLY the same as:
echo "{$array['key']}";
With no notices being generated (I know since I always debug using E_ALL).
Of course, that's the same as:
echo $array['key'];
-- ColdShine "Experience is a hard teacher: she gives the test first, the lesson afterwards." - Vernon Sanders lawReceived on Mon May 1 02:31:15 2006 |