auto_link($str, $type = 'both', $popup = FALSE)
Parameters: |
|
---|---|
Returns: |
Linkified string |
Return type: |
string |
Automatically turns URLs and e-mail addresses contained in a string into links. Example:
1 | $string = auto_link( $string ); |
The second parameter determines whether URLs and e-mails are converted or just one or the other. Default behavior is both if the parameter is not specified. E-mail links are encoded as safe_mailto()
as shown above.
Converts only URLs:
1 | $string = auto_link( $string , 'url' ); |
Converts only e-mail addresses:
1 | $string = auto_link( $string , 'email' ); |
The third parameter determines whether links are shown in a new window. The value can be TRUE or FALSE (boolean):
1 | $string = auto_link( $string , 'both' , TRUE); |
Please login to continue.