Ejemplo n.º 1
0
function autolink($text, $limit = 60, $tagfill = '', $auto_title = true)
{
    $text = autolink_do($text, '![a-z][a-z-]+://!i', $limit, $tagfill, $auto_title);
    $text = autolink_do($text, '!(mailto|skype):!i', $limit, $tagfill, $auto_title);
    $text = autolink_do($text, '!www\\.!i', $limit, $tagfill, $auto_title, 'http://');
    return $text;
}
Ejemplo n.º 2
0
function autolink_urls($text, $limit = 30, $tagfill = '', $auto_title = true)
{
    $text = autolink_do($text, 'https://', $limit, $tagfill, $auto_title);
    $text = autolink_do($text, 'http://', $limit, $tagfill, $auto_title);
    $text = autolink_do($text, 'ftp://', $limit, $tagfill, $auto_title);
    $text = autolink_do($text, 'www.', $limit, $tagfill, $auto_title);
    return $text;
}
Ejemplo n.º 3
0
function autolink($text, $limit = 30, $tagfill = '')
{
    $text = autolink_do($text, 'https://', $limit, $tagfill);
    $text = autolink_do($text, 'http://', $limit, $tagfill);
    $text = autolink_do($text, 'ftp://', $limit, $tagfill);
    $text = autolink_do($text, 'www.', $limit, $tagfill);
    return $text;
}