Skip to content

Instantly share code, notes, and snippets.

@robskidmore
Created May 9, 2014 17:15
Show Gist options
  • Save robskidmore/62efc86320d4a322b67a to your computer and use it in GitHub Desktop.
Save robskidmore/62efc86320d4a322b67a to your computer and use it in GitHub Desktop.
Trim string by words
<?php
// Trim a string by words instead of characters
$pos=strpos($content, ' ', 200);
substr($content,0,$pos );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment