Function __global->php_function_allowed__bootstrap
Definitions
sources/bootstrap.php
- Find whether a particular PHP function is blocked.This is simplified code for use in bootstrap only.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $function | string | No | No | required parameter | N/A | N/A | Function name |
Returns
- Whether it is
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find whether a particular PHP function is blocked.This is simplified code for use in bootstrap only.
*
* @param string $function Function name
* @return boolean Whether it is
*/
function php_function_allowed__bootstrap(string $function) : bool
* Find whether a particular PHP function is blocked.This is simplified code for use in bootstrap only.
*
* @param string $function Function name
* @return boolean Whether it is
*/
function php_function_allowed__bootstrap(string $function) : bool

