чего там релизовать то? заменить н сможешь?Gemini_13, реализуй пожалуйста на TP II
$text = preg_replace_callback('#(\s*)\[code\](.+?)\[/code\](\s*)#s', array(&$this, 'code_callback'), $text);
// Parse actors [cast]
$text = preg_replace_callback('#\[cast\](.+?)\[/cast\]#', array(&$this, 'parse_actor'), $text);
/**
* Clean up
*/
function parse_actor($text)
{
$text = $text[1];
$text_cs = $text_c = array();
$text_c = explode(", ", $text);
foreach ($text_c as $value)
{
$text_cs[] = '<a href="search.php?nm='. $value .'" target="_blank" class="postLink">' . $value . '</a>';
}
return(implode(", ", $text_cs));
}
эм... у вас изначально $text массив ? или я туплю после 8го марта ?$text = trim($text[1]);