Type Definition ext_php_rs::php::class::ClassEntry [−][src]
pub type ClassEntry = zend_class_entry;
Expand description
A Zend class entry. Alias.
Implementations
Attempts to find a reference to a class in the global class table.
Returns a reference to the class if found, or None
if the class could
not be found or the class table has not been initialized.
Returns the class flags.
Returns true
if the class entry is an interface, and false
otherwise.
Checks if the class is an instance of another class or interface.
Parameters
ce
- The inherited class entry to check.
Returns an iterator of all the interfaces that the class implements. Returns None
if
the interfaces have not been resolved on the class.
Returns the base ErrorException
class.
Returns the base CompileError
class.
Returns the base ParseError
class.
Returns the base TypeError
class.
Returns the base ArgumentCountError
class.
Returns the base ValueError
class.
Returns the base ArithmeticError
class.
Returns the base DivisionByZeroError
class.
Returns the base UnhandledMatchError
class.