View Single Post
Old 04-13-2022, 06:20 AM  
vdbucks
Monger Cash
 
Industry Role:
Join Date: Jul 2010
Posts: 2,773
Code:
<?php
$input = "This is a test of the emergency broadcast system. This is only a test. If this were a real emergency, you'd likely be dead";
$length = 100;

$output = strlen($input) > $length ? substr($input, 0, strpos(wordwrap($input, $length), "\n"))."..." : $input;

echo $output;
vdbucks is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote