Function __global->comma_list_arr_to_str
Definitions
sources/global3.php
- Convert a parameter set from a an array (for PHP code) to a string (for templates).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $map | array | No | No | required parameter | N/A | N/A | The parameters / acceptable parameter pattern |
Returns
- The parameters / acceptable parameter pattern, as template safe parameter
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Convert a parameter set from a an array (for PHP code) to a string (for templates).
*
* @param array $map The parameters / acceptable parameter pattern
* @return string The parameters / acceptable parameter pattern, as template safe parameter
*/
function comma_list_arr_to_str(array $map) : string
* Convert a parameter set from a an array (for PHP code) to a string (for templates).
*
* @param array $map The parameters / acceptable parameter pattern
* @return string The parameters / acceptable parameter pattern, as template safe parameter
*/
function comma_list_arr_to_str(array $map) : string

