#!/usr/bin/env php isStatic() ? '1' : '0') && p() && e('1'); // 验证为静态方法 r($reflection->isPublic() ? '1' : '0') && p() && e('1'); // 验证为公共方法 r($reflection->getNumberOfParameters()) && p() && e('1'); // 验证参数个数 r($reflection->hasReturnType() && $reflection->getReturnType()->getName() == 'string' ? '1' : '0') && p() && e('1'); // 验证返回字符串类型