JBZoo\Utils\Sys::hasPHPDBGCodeCoverage PHP 메소드

hasPHPDBGCodeCoverage() 공개 정적인 메소드

Returns true when the runtime used is PHP with the PHPDBG SAPI and the phpdbg_*_oplog() functions are available (PHP >= 7.0).
public static hasPHPDBGCodeCoverage ( ) : boolean
리턴 boolean
    public static function hasPHPDBGCodeCoverage()
    {
        return self::isPHPDBG() && function_exists('phpdbg_start_oplog');
    }