Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<?php echo strip_tags($wo['story']['postText'], '<p><iframe>');?>
mb_substr($wo['story']['postText'], 0, 156, "utf-8"
<?php $text = $wo['story']['postText']; $text = strip_tags($text, '<p><iframe>'); $text = mb_substr($text, 0, 156, "utf-8"); echo $text; ?>
$text = &$wo['story']['postText'];
<?php echo mb_substr(strip_tags($wo['story']['postText'], '<p><iframe>'), 0, 156, "utf-8");?>