PhpSandbox\PHPSandbox::hasDefinedConsts PHP 메소드

hasDefinedConsts() 공개 메소드

Query whether PHPSandbox instance has defined constants
public hasDefinedConsts ( ) : integer
리턴 integer Returns the number of constants this instance has defined
    public function hasDefinedConsts()
    {
        return count($this->definitions['constants']);
    }
PHPSandbox