Skip to content

Instantly share code, notes, and snippets.

@bolstad
Created April 19, 2013 18:35
Show Gist options
  • Save bolstad/5422277 to your computer and use it in GitHub Desktop.
Save bolstad/5422277 to your computer and use it in GitHub Desktop.
Begränsa strängen till max antal chars men behåll hela ord
<?php
function cutstr($str, $length, $ellipsis='')
{
$cut=explode('\n\n',wordwrap($str),$length,'\n\n'));
return $cut[0].((strlen($cut)<strlen($str))?$ellipsis:'');
}
echo cutstr('hej hej, nu ska vi kolla på hur det blir här. kommer det här att bli bra? eller vad säger du ? ', 30,'...');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment