ID: 19883
Comment by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Strings related
Operating System: Windows NT
PHP Version: 4.2.0
New Comment:
ok, ok,
I understand, I also read carefully the docs,
I know there
ID: 19883
Comment by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Strings related
Operating System: Windows NT
PHP Version: 4.2.0
New Comment:
Yes, of course,
I was only thinking that the advantage of PHP over C
ID: 19883
Comment by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Strings related
Operating System: Windows NT
PHP Version: 4.2.0
New Comment:
and when you want to concatenate with dynamic
calculated infos ?
From: [EMAIL PROTECTED]
Operating system: Windows NT
PHP version: 4.2.0
PHP Bug Type: Strings related
Bug description: string concatenation bug
concatenation hazard ... on :
$a = 2;
echo 'c='.$a*2 .' ok';
it produce a good result : "c=4 ok"
but :
$a = 2;
echo '
ID: 19883
Comment by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Strings related
Operating System: Windows NT
PHP Version: 4.2.0
New Comment:
and also :
$e = 0x7C.'km'; // is ok '124km'
$e = 124.'km'; // par
ID: 19883
Comment by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Strings related
Operating System: Windows NT
PHP Version: 4.2.0
New Comment:
maybe you do not consider it as a bug but it is quite
annoying when