summaryrefslogtreecommitdiff
path: root/Zend/tests/function_arguments_003.phpt
blob: b882476d1d906494e5c7ee23d3f3109046b4b8de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Function Argument Parsing #003
--FILE--
<?php
const a = 10;

function t1($a = 1 + 1, $b = 1 << 2, $c = "foo" . "bar", $d = a * 10) {
	var_dump($a, $b, $c, $d);
}

t1();
?>
--EXPECT--
int(2)
int(4)
string(6) "foobar"
int(100)