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;
    }