Function __global->fatal_ipn_exit
Definitions
sources/ecommerce.php
- Exit the software and write to the error log file.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $error | string | No | No | required parameter | N/A | N/A | The message |
| $dont_trigger | boolean | No | No | False | N/A | N/A | Dont trigger an error |
Preview
Code (PHP)
/**
* Exit the software and write to the error log file.
*
* @param string $error The message
* @param boolean $dont_trigger Dont trigger an error
*/
function fatal_ipn_exit(string $error, bool $dont_trigger = false)
* Exit the software and write to the error log file.
*
* @param string $error The message
* @param boolean $dont_trigger Dont trigger an error
*/
function fatal_ipn_exit(string $error, bool $dont_trigger = false)

