|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-09-20 08:57 UTC] johannes@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 21:00:01 2025 UTC |
Description: ------------ display problems with function Reproduce code: --------------- <?php $val = ""; function write($val) { if($val == 11) {echo "text";} else if($val == 12) {echo "Text";} else if($val == 13) {echo "TEXT";} else if($val < 11) {echo $val;} } $val_3 = "13"; echo "<pre>" . write($val_3) . " - " . write($val_3) . ":" . write($val_3) . "</pre><br />";?> Expected result: ---------------- TEXT - TEXT:TEXT Actual result: -------------- TEXTTEXTTEXT - :