Guest User

Untitled

a guest
Jul 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. $feedback['testimonial_preview'] = "<p>Holy Trinity Greek Orthodox Church has been doing business with Datamax for the last ten years. I get calls almost weekly from competitors asking for a shot at our business, but it is not worth my time to even give them a chance. The products and services we get from you meet or exceed our expectations in every case.</p>
  2. <p>Datamax</p>";
  3.  
  4.  
  5. if (true == preg_match('/<p*?>|\n|<br>/i',substr($feedback['testimonial_preview'],-50)))
  6. {
  7. // if so, split it up so we can return the first one - after adding the ellipse
  8. $results = preg_split('/<p*?>|\n|<br>/i',$feedback['testimonial_preview'],-1,PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY);
  9. $feedback['testimonial_preview'] = trim($results[0]);
  10. }
Add Comment
Please, Sign In to add comment