Expand description
Types used to interact with the Zend engine.
Modules§
- ce
- Stock class entries registered with PHP, primarily exceptions.
Functions§
- bailout⚠
- Trigger a bailout
- php_
sapi_ name - Get the name of the SAPI module.
- printf
- Prints to stdout using the
php_printf
function. - try_
catch - PHP propose a try catch mechanism in C using setjmp and longjmp (bailout) It store the arg of setjmp into the bailout field of the global executor If a bailout is triggered, the executor will jump to the setjmp and restore the previous setjmp
- try_
catch_ first - PHP propose a try catch mechanism in C using setjmp and longjmp (bailout) It store the arg of setjmp into the bailout field of the global executor If a bailout is triggered, the executor will jump to the setjmp and restore the previous setjmp
Type Aliases§
- Class
Entry - A PHP class entry.
- Execute
Data - Execute data passed when a function is called from PHP.
- Executor
Globals - Stores global variables used in the PHP executor.
- File
Globals - Stores global variables used in the SAPI.
- Function
- Function
Entry - A Zend function entry.
- IniEntry
Def - A Zend ini entry definition.
- Module
Entry - A Zend module entry, also known as an extension.
- Process
Globals - Stores global variables used in the PHP executor.
- Sapi
Globals - Stores global variables used in the SAPI.
- Sapi
Module - Stores the SAPI module used in the PHP executor.
- Stream
- Stream
Opener - Stream
Wrapper - Stream
Wrapper Ops - Zend
Linked List - Zend
Object Handlers - A set of functions associated with a PHP class.
- Zend
Type - Internal Zend type.