php-src/Zend/tests/bug30407.phpt
2020-02-03 22:52:20 +01:00

17 lines
213 B
PHP

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