php-general | 2003022
Date: 02/18/03
- Next message: chip.wiegand <email protected>: "Re: [PHP] browser identification problem"
- Previous message: David Otton: "Re: [PHP] NULL character help"
- In reply to: David Otton: "Re: [PHP] NULL character help"
- Next in thread: Ernest E Vogelsinger: "Re: [PHP] Array declarations"
- Reply: Ernest E Vogelsinger: "Re: [PHP] Array declarations"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Is there any speed difference at all from the following two code
blocks (miniscule or not)? If so, which is faster?
$cfg["db"]["host"] = "xxxx";
$cfg["db"]["user"] = "yyyy";
$cfg["db"]["pass"] = "zzzz";
or
$cfg["db"] = array("host"=>"xxxx", "user"=>"yyyy", "pass"=>"zzzz");
Joachim
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: chip.wiegand <email protected>: "Re: [PHP] browser identification problem"
- Previous message: David Otton: "Re: [PHP] NULL character help"
- In reply to: David Otton: "Re: [PHP] NULL character help"
- Next in thread: Ernest E Vogelsinger: "Re: [PHP] Array declarations"
- Reply: Ernest E Vogelsinger: "Re: [PHP] Array declarations"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

