Function __global->require
Definitions
sources_custom/phpstub.php
- Require and evaluate the specified file (dies with error if it can not).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $filename | PATH | No | No | required parameter | N/A | N/A | The filename of the file to require |
Returns
- Success status or returned value
- Type: mixed
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Require and evaluate the specified file (dies with error if it can not).
*
* @param PATH $filename The filename of the file to require
* @return mixed Success status or returned value
*/
function require(string $filename)
* Require and evaluate the specified file (dies with error if it can not).
*
* @param PATH $filename The filename of the file to require
* @return mixed Success status or returned value
*/
function require(string $filename)

