|
Predefined Constants
The constants below are defined by this extension, and
will only be available when the extension has either
been compiled into PHP or dynamically loaded at runtime.
The following opcodes are defined as constants by uopz:
-
ZEND_EXIT
(integer)
-
Invoked by exit() and die(), recieves no arguments. Return boolean
TRUE to exit, FALSE to continue
-
ZEND_NEW
(integer)
-
Invoked by object construction, receives the class of object being created as the only argument
-
ZEND_THROW
(integer)
-
Invoked by the throw construct, receives the class of exception being thrown as the only argument
-
ZEND_FETCH_CLASS
(integer)
-
Invoked upon composure, recieves the class the name of the class being fetched as the only argument
-
ZEND_ADD_TRAIT
(integer)
-
Invoked upon composure, recieves the class the trait is being added to as the first argument, and the name of the trait as the second argument
-
ZEND_ADD_INTERFACE
(integer)
-
Invoked upon composure, recieves the class the interface is being added to as the first argument, and the name of the interface as the second argument
-
ZEND_INSTANCEOF
(integer)
-
Invoked by instanceof operator, recieves the object being verified as the first argument, and the name of the class which that object should be as the second argument
The following constants control the VM's behaviour after a user handler is invoked, be extremely careful!
-
ZEND_USER_OPCODE_CONTINUE
(integer)
-
Advance 1 opcode and continuue
-
ZEND_USER_OPCODE_ENTER
(integer)
-
Enter into new op_array without recursion
-
ZEND_USER_OPCODE_LEAVE
(integer)
-
Return to calling op_array within the same executor
-
ZEND_USER_OPCODE_DISPATCH
(integer)
-
Dispatch to original opcode handler
-
ZEND_USER_OPCODE_DISPATCH_TO
(integer)
-
Dispatch to a specific handler (OR'd with ZEND opcode constant)
-
ZEND_USER_OPCODE_RETURN
(integer)
-
Exit from executor (return from function)
The following modifiers are registered as constants by uopz
-
ZEND_ACC_PUBLIC
(integer)
-
Mark function as public, the default
-
ZEND_ACC_PROTECTED
(integer)
-
Mark function as protected
-
ZEND_ACC_PRIVATE
(integer)
-
Mark function as private
-
ZEND_ACC_STATIC
(integer)
-
Mark function as static
-
ZEND_ACC_FINAL
(integer)
-
Mark function as final
-
ZEND_ACC_ABSTRACT
(integer)
-
Mark function as abstract
-
ZEND_ACC_CLASS
(integer)
-
Dummy registered for consistency, the default kind of class entry
-
ZEND_ACC_INTERFACE
(integer)
-
Mark class as interface
-
ZEND_ACC_TRAIT
(integer)
-
Mark class as trait
-
ZEND_ACC_FETCH
(integer)
-
Used for getting flags only
|