503f75d08b
These names don't make sense now that we run both suites the same way.
21 linhas
230 B
PHP
21 linhas
230 B
PHP
<?php
|
|
function id($x,) {return $x;}
|
|
var_dump(id(1,));
|
|
|
|
function multiline(
|
|
$x,
|
|
$y,
|
|
) { return $x+$y; }
|
|
var_dump(multiline(
|
|
1,
|
|
2,
|
|
));
|
|
|
|
$x = 3;
|
|
$y = 4;
|
|
$c = function () use (
|
|
$x,
|
|
$y,
|
|
) { return $x+$y; };
|
|
var_dump($c());
|