Function __global->is_file
Definitions
sources_custom/phpstub.php
- Finds whether a path is to a file.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $path | PATH | No | No | required parameter | N/A | N/A | The path to check |
Returns
- Whether it is
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Finds whether a path is to a file.
*
* @param PATH $path The path to check
* @return boolean Whether it is
*/
function is_file(string $path) : bool
* Finds whether a path is to a file.
*
* @param PATH $path The path to check
* @return boolean Whether it is
*/
function is_file(string $path) : bool

