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

Reply via email to