From: [EMAIL PROTECTED]
Operating system: win2k
PHP version: 4.0.5
PHP Bug Type: Scripting Engine problem
Bug description: $x .= &someFunction();
code i would like to use:
---cut---
function &someShit() {
return 'foo';
}
$out = '';
for ($i = 1; $i <= 3; $i++) {
$out .= &someShit() . "<br>\n";
}
echo $out;
---cut---
problem:
parse error on line
$out .= &someShit() . "<br>\n";
because .= and & don't work together.
so the workaround would be:
$temp = &someShit() . "<br>\n";
$out .= $temp;
problem here:
it prints out 'foofoofoo' and not
'foo<br>\nfoo<br>\nfoo<br>\n'
so the code finally looks like:
---cut---
function &someShit() {
return 'foo';
}
$out = '';
for ($i = 1; $i <= 3; $i++) {
$temp = &someShit();
$out .= $temp . "<br>\n";
}
echo $out;
---cut---
is this the normal behavior?
fab
--
Edit Bug report at: http://bugs.php.net/?id=10967&edit=1
--
PHP Development 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]