Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. //обрезать текст по количеству слов
  3. $text = strip_tags($item['text']);
  4. $arr = explode( ' ', $text );
  5. $arr = array_slice( $arr, 0, 40 );
  6. $text = implode( ' ', $arr ).'...'; // Этот текст нужно обработать как...
  7. unset($arr);
  8. $content[$i]['text'] = $text;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement