php-src/Zend/tests/bug30407.phpt
2005-08-15 14:37:55 +00:00

23 lines
286 B
PHP

--TEST--
Bug #30407 (Strange behaviour of default arguments)
--FILE--
<?php
function haricow($a = 'one') {
var_dump($a);
$a = 'two';
}
haricow();
haricow();
?>
===DONE===
--EXPECT--
string(3) "one"
string(3) "one"
===DONE===
--UEXPECT--
unicode(3) "one"
unicode(3) "one"
===DONE===