href($string, $wrapper)
$string : supplied string
$wrapper : an html wrapper tag
vdump( href("url : http://somesite.com") );
url : <a href="http://somesite.com"> http://somesite.com </a>
vdump( href('url : http://somesite.com', 'span id="link"') );
url :
<span id="link">
<a href="http://somesite.com"> http://somesite.com </a>
</span id="link">