Skip to content

Instantly share code, notes, and snippets.

@rajvanshipradeep15
Created September 19, 2013 10:18
Show Gist options
  • Save rajvanshipradeep15/6621559 to your computer and use it in GitHub Desktop.
Save rajvanshipradeep15/6621559 to your computer and use it in GitHub Desktop.
get integer from string
http://stackoverflow.com/questions/6278296/extract-numbers-from-a-string
// to get integer from string
preg_match_all('!\d+!', $string, $matches);
print_r($matches);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment