Skip to content

Instantly share code, notes, and snippets.

@abhineetmittal
Last active January 23, 2017 02:53
Show Gist options
  • Save abhineetmittal/bcc323dae8db374b044e9f0feb2ecfa3 to your computer and use it in GitHub Desktop.
Save abhineetmittal/bcc323dae8db374b044e9f0feb2ecfa3 to your computer and use it in GitHub Desktop.
str_word_count from PHP
<?php
$string = 'This is a sample string.';
$word_count = str_word_count ( string $string );
echo $word_count;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment