noganno
9/2/2013 - 5:48 PM

Обрезаем текст определённой длины на PHP URL: http://ruseller.com/lessons.php?rub=37&id=1769 Многие разработчики ломают голову над скриптом

Обрезаем текст определённой длины на PHP URL: http://ruseller.com/lessons.php?rub=37&id=1769

Многие разработчики ломают голову над скриптом, который будет обрезать текст определённой длины. Подобный текст используется в качестве краткого описания к статьям или постам.

Различного рода CMS предоставляют нам готовые решения для подобного рода задач, но почему бы не посмотреть на то, как сделать это самому.

Данную задачу можно решить средствами JavaScript и CSS, однако мы воспользуемся языком PHP.

Возьмём следующий текст:

$string = "<p><strong>Richard III</strong> (2 October 1452 � 22August 1485) was King of England for two years, from 1483 until his death in 1485 in the Battle of Bosworth Field. He was the last king of the House of York and the last of the Plantagenet dynasty. His defeat at Bosworth Field, the decisive battle of the Wars of the Roses, is sometimes regarded as the end of the Middle Ages in England. He is the subject of the play<cite>Richard III</cite> by <a href=//en.wikipedia.org/wiki/William_Shakespeare>William Shakespeare.</a>";
$string = strip_tags($string);
$string = substr($string, 0, 200);
$string = rtrim($string, "!,.-");
$string = substr($string, 0, strrpos($string, ' '));
echo $string."� ";