Return to 017.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / lang |
php
1: --TEST-- 2: Testing user-defined function falling out of an If into another 3: --FILE-- 4: <?php 5: $a = 1; 6: function Test ($a) { 7: if ($a<3) { 8: return(3); 9: } 10: } 11: 12: if ($a < Test($a)) { 13: echo "$a\n"; 14: $a++; 15: } 16: ?> 17: --EXPECT-- 18: 1