patrzyles kod do convertera phpBB >> IPB
tutaj jest wycinek do bbcode
[php:1:5626d136f3]<?php
function unconvert_bbcode($text)
{
$text = preg_replace("/[list]" , $text);
$text = preg_replace("/[*:([0-9|a-z]+)]/i" , "
[*]" , $text);
$text = preg_replace("/[/list(.+)]/i" , "[list]" , $text);
$text = preg_replace("/
{6}|[a-z]+):([0-9|a-z]+)]/i", "[color=1]", $text);
$text = preg_replace("/[/color(.+)]/i" , "", $text);
$text = preg_replace("/
?[1-2]?[0-9]):([0-9|a-z]+)]/si", "[size=1]", $text);
$text = preg_replace("/[/size:([0-9|a-z]+)]/i" , "" , $text);
$text = preg_replace("/[quote]/si" , "[quote]" , $text);
$text = preg_replace("/[/quote:(.*?)]/si" , "[/quote]" , $text);
$text = preg_replace("/[code:([0-9|a-z]+):([0-9|a-z]+)]/si" , "
Kod
" , $text);
$text = preg_replace("/[/code:([0-9|a-z]+):([0-9|a-z]+)]/si", "
" , $text);
$text = preg_replace("/[b:([0-9|a-z]+)]/si" , "
" , $text);
$text = preg_replace("/[/b:([0-9|a-z]+)]/si" , "" , $text);
$text = preg_replace("/[u:([0-9|a-z]+)]/si" , "
" , $text);
$text = preg_replace("/[/u:([0-9|a-z]+)]/si" , "" , $text);
$text = preg_replace("/[i:([0-9|a-z]+)]/si" , "
" , $text);
$text = preg_replace("/[/i:([0-9|a-z]+)]/si" , "" , $text);
$text = preg_replace("/[IMG]/si" , "[IMG]" , $text);
$text = preg_replace("/[/img:(.*?)]/si" , "[/IMG]" , $text);
return $text;
}
?>[/php:1:5626d136f3]