"Pavel Jartsev" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Jordan Elver wrote:
> >
> > Hi,
> > Could any one explain what this statemnt means?
> >
> > $i = (!$i)?"0":$i;

Well, literally, "if not-$i is equivalent to true then $i becomes string
"0", otherwise $i 'becomes' $i".

A more obvious approach would be
    if ($i == 0)
        $i = "0";

I assume you got this out of some sort of integer-to-string conversion code?



-- 
PHP General 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]

Reply via email to