Return to bug30407.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests |
1.1 ! misho 1: --TEST-- ! 2: Bug #30407 (Strange behaviour of default arguments) ! 3: --FILE-- ! 4: <?php ! 5: ! 6: function haricow($a = 'one') { ! 7: var_dump($a); ! 8: $a = 'two'; ! 9: } ! 10: ! 11: haricow(); ! 12: haricow(); ! 13: ?> ! 14: ===DONE=== ! 15: --EXPECT-- ! 16: string(3) "one" ! 17: string(3) "one" ! 18: ===DONE===