Function __global->convert_to_save_path
Definitions
code_editor.php
- Convert a normal path to an overridden save path.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $save_path | string | No | No | required parameter | N/A | N/A | The normal path |
Returns
- The overridden save path
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Convert a normal path to an overridden save path.
*
* @param string $save_path The normal path
* @return string The overridden save path
*/
function convert_to_save_path(string $save_path) : string
* Convert a normal path to an overridden save path.
*
* @param string $save_path The normal path
* @return string The overridden save path
*/
function convert_to_save_path(string $save_path) : string

