Expand description
Types used to interact with the Zend engine.
Modules§
- ce
- Stock class entries registered with PHP, primarily exceptions.
Structs§
- Catch
Error - Error returned when a bailout occurs
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 proposes a try catch mechanism in C using setjmp and longjmp (bailout) It stores 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 proposes a try catch mechanism in C using setjmp and longjmp (bailout) It stores 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
- PHP 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
- A PHP stream
- Stream
Opener - Stream opener function
- Stream
Wrapper - Wrapper for PHP streams
- Stream
Wrapper Ops - Operations that can be performed with a stream wrapper
- Zend
Linked List - PHP linked list
- Zend
Object Handlers - A set of functions associated with a PHP class.
- Zend
Type - Internal Zend type.