Jump to content

den_in

Newbie
  • Posts

    4
  • Joined

  • Last visited

den_in's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. вот блин( тогда я ащее запутался ...
  2. сделал следующим образом: $patterns[0] = "[b]"; $patterns[1] = "[/b]"; $patterns[2] = "[u]"; $patterns[3] = "[/u]"; $replacements[3] = "<b>"; $replacements[2] = "</b>"; $replacements[1] = "<u>"; $replacements[0] = "</u>"; echo preg_replace($patterns, $replacements, $descr); но пока что не могу встроить preg_replace($patterns, $replacements, $descr); вот в эту строку $descr = substr(strip_tags($descr), 0, strpos(strip_tags($descr), ' ', 800)).'...';
  3. А можно подробнее про второй и третий пункт? Вот что нашел по форматированию function bb_tags($text) { // Создаем массив bb-тегов $bb = array( '[B]', '[/B]', '[I]', '[/I]', '[S]', '[/S]', '[U]', '[/U]' ); // Создаем массив тегов HTML $tag = array( '<b>', '</b>', '<i>', '</i>', '<s>', '</s>', '<u>', '</u>' ); // Заменяем элемент первого на элемент второго массива соответственно return str_ireplace($bb, $tag, $text); }
  4. Подскажите пожалуйста Что нужно сделать что бы bb теги закрывались? Стоит лимит символов на 800 т.е. получается вот так Рейтинг... что нужно сделать, что бы тег закрывался? Спасибо.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy