Функция обрезания текста по тегу <cut/>

function cut($text){
$full_text = explode("<cut/>",$text);

return $full_text;
}