On Fri, Sep 10, 2010 at 8:22 AM, Robert E. Glaser <p...@icengineering.com>wrote:

> It's hard to wrap my mind around the concept that the assignment
> operator itself has an operator precedence.  Which means that one could
> write expressions without any assignment at all, and be syntactically
> correct.
>

You do this all the time without realizing it!

    echo "Hello, " . $name;
    $rect->setTopLeft(new Point(5 * 3, 2 / 3));

These expressions are eventually assigned to function parameters or passed
to the PHP engine in the case of echo, but there are no assignment operators
present. And all of the control structures--if, while, for, etc.--take
expressions. Expressions are all around us. You can feel them when you go to
work . . . when you go to church . . . when you pay your taxes. No wait,
that's the Matrix.

David

Reply via email to