phphint.org上的 PSR-0/1/2-syntax 检查器给出了这个消息
The first parameter of a multi-line function declaration must be on
the line after the opening bracket
在这段代码上:
// class autoloader for PHP 5.3+
spl_autoload_register( function ($class) {
include('classes/' . $class . '.class.php');
});
我尝试了很多,但从来没有得到这一小段代码 PSR-0/1/2-save。解决方案会是什么样子(或者 phphint 上的分析器是否过于严格?)?