Изменение ссылок html BBcode
Posted in Bussines-on-line on February 4th, 2007 No Comments »
автор type-v
PHP [Show Styled Code]:
$a = ’site‘;
$b = html_to_bbcode($a);
function html_to_bbcode($str) {
$what = array(’//’,’/< /a>/i’);
$to = array(’[url="’,’"]’,’[/url]’);
return preg_replace($what, $to, $str);
}
PHP [Show Plain Code]:
$a = ‘<a href="site.ru">site</a>’;
$b = html_to_bbcode($a);
function html_to_bbcode($str) {
$what = array(‘/<a href="/i’,‘/">/’,‘/< \/a>/i’);
$to = array(‘[url="’,‘"]’,‘[/url]’);
return preg_replace($what, $to, $str);
}</a>