Contao\CoreBundle\Analyzer\HtaccessAnalyzer::isComment PHP 메소드

isComment() 개인적인 메소드

Checks whether a line is a comment.
private isComment ( string $line ) : boolean
$line string
리턴 boolean
    private function isComment($line)
    {
        return 0 === strncmp('#', ltrim($line), 1);
    }