pQuery\TokenizerBase::getIdentifiers PHP 메소드

getIdentifiers() 공개 메소드

Returns identifier characters as string/array
또한 보기: setIdentifiers()
public getIdentifiers ( boolean $as_string = true ) : string | array
$as_string boolean Should the result be a string or an array?
리턴 string | array
    function getIdentifiers($as_string = true)
    {
        $ident = array_keys($this->identifiers);
        return $as_string ? implode('', $ident) : $ident;
    }