Function __global->is_temp_file
Definitions
sources/files2.php
- Find if a file is a temporary 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 | File path |
Returns
- Whether it is
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find if a file is a temporary file.
*
* @param PATH $path File path
* @return boolean Whether it is
*/
function is_temp_file(string $path) : bool
* Find if a file is a temporary file.
*
* @param PATH $path File path
* @return boolean Whether it is
*/
function is_temp_file(string $path) : bool
