php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #40820 Operator Pecedence
Submitted: 2007-03-15 12:57 UTC Modified: 2007-03-23 14:10 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:1 (100.0%)
From: mturner at cc dot umanitoba dot ca Assigned:
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS: linux
Private report: No CVE-ID: None
 [2007-03-15 12:57 UTC] mturner at cc dot umanitoba dot ca
Description:
------------
According to the operator precdence docs, the modulus operator has precedence over the equals operator.  But that is not in fact how it works, as a recent thread on the php general list has shown.

Reproduce code:
---------------
$s= 5;
$d = 2;
$result = ($s % $d=3);
echo "3 incorrectly assigned to \$d:  \$d=$d\n";
echo "result of mod = $result\n";  //$result here is 2: 5 % 3


Expected result:
----------------
This should give an error, instead it assigns 3 to $d and gives a result of 2.

A parallel bug was reported with respect to the ! and the = operators in bug #17180, which resulted in a statement at the end of the operator precedence document which allows for an exception to the rule. Either the operator precedence rules should be respected or a general inquiry should be made into how php handles = and a general statement about it should be appended to the operator precedence docs.

These exceptions to the operator precedence rules are not allowd in Perl.


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-03-23 14:10 UTC] vrana@php.net
This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation better.

"Although = has a lower precedence than most other operators, ..."
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sat Apr 05 17:01:30 2025 UTC