bbp_make_ftps_clickable( string $text = '' )
Make FTP clickable in content areas
Description Description
See also See also
Parameters Parameters
- $text
-
(Optional)
Default value: ''
Return Return
(string)
Source Source
File: includes/common/formatting.php
function bbp_make_ftps_clickable( $text = '' ) { return preg_replace_callback( '#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]+)#is', '_make_web_ftp_clickable_cb', $text ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |