File_Find::isError PHP 메소드

isError() 공개 메소드

Determine whether or not a variable is a PEAR error
public isError ( &$var ) : boolean
리턴 boolean returns true if the variable is a PEAR error, otherwise it returns false.
    function isError(&$var)
    {
        return PEAR::isError($var);
    }