如何在 magento 前端制作 link

How to make link in magento frontend

我想在我的模块的 magento 前端制作 link 有评论框所以我想如果任何客户或客人在评论中使用任何 url 到时候它将显示为 link 那么如何制作请举例说明如何做到这一点

<?php 
$string = 'I have some texts here and also links such as http://www.youtube.com  http://www.haha.com and lol@example.com. They are ready to be replaced.';

function makeClickableLinks($s) {
    return preg_replace('@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@', '<a href="" target="_blank"></a>', $s);
}

echo makeClickableLinks($string);
?>

这个答案参考这个link