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 before 5.0.0:
-
ZEND_EXIT
(integer) -
Invoked by exit() and die(), receives 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, receives the class the name of the class being fetched as the only argument
-
ZEND_ADD_TRAIT
(integer) - Invoked upon composure, receives 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, receives 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, receives 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! These constants are removed as of uopz 5.0.0.
-
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. Removed as of uopz 5.0.0.
-
ZEND_ACC_INTERFACE
(integer) - Mark class as interface. Removed as of uopz 5.0.0.
-
ZEND_ACC_TRAIT
(integer) - Mark class as trait. Removed as of uopz 5.0.0.
-
ZEND_ACC_FETCH
(integer) - Used for getting flags only. Removed as of uopz 5.0.0.
Vertaling niet beschikbaar
De PHP-handleiding is nog niet in het Nederlands vertaald, dus het scherm is in het Engels. Als u wilt, kunt u het ook in het Frans of in het Duits raadplegen.
Als je de moed voelt, kun je je vertaling aanbieden ;-)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/01/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/php-rf-uopz.constants.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.