c2ec1c97c9
A poor man's formatter since I didn't like any of the other ones I found. The original C++ source sometimes put newlines and sometimes not.
Codemods:
codemod '([;{}])([^\n])' '\1\n\2'
codemod -m '\s*<\?php\s+' '<?php\n\n'
codemod '\t' ' '
I hand-fixed all the failing tests
26 linhas
404 B
PHP
26 linhas
404 B
PHP
<?php
|
|
|
|
function id($x) {
|
|
return $x;
|
|
}
|
|
function f1($x) {
|
|
$z = id($x[0]);
|
|
foreach ($x[0] as $a) {
|
|
$z[] = array(id($z), count($x[0]));
|
|
}
|
|
}
|
|
f1(array(array(0, 1, 2, 3)));
|
|
|
|
function f2($x) {
|
|
var_dump($x[0]);
|
|
$y = 'foo' . $x[0] . 'bar';
|
|
}
|
|
f2('foobar');
|
|
|
|
function f3($x) {
|
|
$x = is_string($x[0]) ? $x[0] : get_class($x[0]);
|
|
return $x;
|
|
}
|
|
var_dump(f3('abc'));
|
|
var_dump(f3(array(new stdClass)));
|