Function __global->extract_plain_links
Definitions
sources/rss.php
- Used to turn plain-text links into real links.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $matches | array | No | No | required parameter | N/A | N/A | The matches |
Returns
- The replacement
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Used to turn plain-text links into real links.
*
* @param array $matches The matches
* @return string The replacement
*/
function extract_plain_links(array $matches) : string
* Used to turn plain-text links into real links.
*
* @param array $matches The matches
* @return string The replacement
*/
function extract_plain_links(array $matches) : string

