Lines Matching refs:max
2 Test return type and value for expected input max()
6 * proto mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])
12 var_dump(max(2,1,2));
13 var_dump(max(-2,1,2));
14 var_dump(max(2.1,2.11,2.09));
15 var_dump(max("", "t", "b"));
16 var_dump(max(false, true, false));
17 var_dump(max(true, false, true));
18 var_dump(max(1, true, false, true));
19 var_dump(max(0, true, false, true));
20 var_dump(max(0, 1, array(2,3)));