Function __global->_generate_moniker
Definitions
sources/urls2.php
- Generate a moniker from an arbitrary raw string. Does not perform uniqueness checks.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $moniker_src | string | No | No | required parameter | N/A | N/A | Raw string |
Returns
- Moniker
- Type: ID_TEXT
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Generate a moniker from an arbitrary raw string. Does not perform uniqueness checks.
*
* @param string $moniker_src Raw string
* @return ID_TEXT Moniker
*/
function _generate_moniker(string $moniker_src) : string
* Generate a moniker from an arbitrary raw string. Does not perform uniqueness checks.
*
* @param string $moniker_src Raw string
* @return ID_TEXT Moniker
*/
function _generate_moniker(string $moniker_src) : string

