PHP 클래스 Psecio\Parse\Rule\DisplayErrors

The display_errors setting determines whether errors should be printed to the screen as part of the output or if they should be hidden from the user. Displaying errors can be helpful during development, but should never be used in production as it may leak valueable information to an attacker. To prevent accidentaly displaying errors it is recommended that you never use ini_set() to manually enable reporting. Example of failing code ini_set('display_errors', true); How to fix? Configure display_errors in your php.ini file. And make sure that it is set to false in production.
상속: implements Psecio\Parse\RuleInterface, use trait Psecio\Parse\Rule\Helper\NameTrait, use trait Psecio\Parse\Rule\Helper\DocblockDescriptionTrait, use trait Psecio\Parse\Rule\Helper\IsFunctionCallTrait, use trait Psecio\Parse\Rule\Helper\IsBoolLiteralTrait
파일 보기 프로젝트 열기: psecio/parse

공개 메소드들

메소드 설명
isValid ( PhpParser\Node $node )

비공개 메소드들

메소드 설명
readArgument ( PhpParser\Node $node, $index )

메소드 상세

isValid() 공개 메소드

public isValid ( PhpParser\Node $node )
$node PhpParser\Node