On 02 Jan 2013 at 16:05, Stephen <stephen-d@xxxxxxxxxx> wrote: > On 13-01-02 10:53 AM, Marc Guay wrote: >> Hi folks, >> >> if ($a = "foo" && $b = "bar"){ >> echo $a."<br />".$b; >> } >> >> Returns: >> 1 >> bar >> >> I expect: >> foo >> bar >> >> Is this documented? >> > > && takes precedence over = > > http://php.net/manual/en/language.operators.precedence.php > > You may want to use brackets OP may want to avoid doing something unusual which may confuse a casual reader. -- Cheers -- Tim
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php