WordPress 函数:make_clickable

将纯文本中的 URI 转换成 HTML 链接。

将转换 URI,www,FTP 和邮箱地址,并且修正链接中的链接。

用法

<?php make_clickable( $text ) ?>

参数

$text
(string) (required) 将转换成可点击的文本。
Default: None

返回值

(string) 
链接转换成可点击的 HTML 代码。

实例

$string = "xiaoyi 的博客是 http://xiaoyi.vc/ ";
echo make_clickable($string);

输出结果:

xiaoyi 的博客是 <a href="http://xiaoyi.vc/" rel="nofollow">http://xiaoyi.vc/</a>

修改记录

Since: 0.71

源文件

wp-includes/formatting.php