如何在magento前端创建链接

如何在magento前端创建链接,magento,Magento,我想在我的模块中的magento frontend中创建链接,因此我想如果任何客户或来宾在评论中使用任何url,那么此时它将显示为链接,因此如何创建请给我示例如何执行此操作 <?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.'

我想在我的模块中的magento frontend中创建链接,因此我想如果任何客户或来宾在评论中使用任何url,那么此时它将显示为链接,因此如何创建请给我示例如何执行此操作


<?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="$1" target="_blank">$1</a>', $s);
}

echo makeClickableLinks($string);
?>
这个答案指的是这个链接