php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13270 Odd Math/String behaviour when 'echo'ing...
Submitted: 2001-09-12 14:55 UTC Modified: 2001-09-12 16:58 UTC
From: SeanECoates at yahoo dot ca Assigned:
Status: Not a bug Package: Math related
PHP Version: 4.0.6 OS: Windows 2000
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: SeanECoates at yahoo dot ca
New email:
PHP Version: OS:

 

 [2001-09-12 14:55 UTC] SeanECoates at yahoo dot ca
The following code produces strange output:
<?php
 echo "one".  1+2  ."two<br>\n";
 echo "one". (1+2) ."two<br>\n";
?>
(output:)
2two
one3two

maybe I'm overlooking something, but when excluding the parentheses, causes the first "one" to not display, and the addition to work incorrectly.
Please email me if you need more details. Obviously, the workaround is to put parentheses around the math.

Is this because, without parentheses, PHP is treating the statement like this:

echo "one1" + "2two"; // or something similar?

Using PHP4.0.6, Win32 pre-compiled. Other systems untested.

S

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-09-12 16:58 UTC] sniper@php.net
Just a matter of operator precedence:

http://www.php.net/manual/en/language.operators.precedence.php

Not a bug. (. is just another operator, as is + )

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 11 03:01:29 2024 UTC