Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 16, 2012 02:50
Show Gist options
  • Save MilkZoft/1618784 to your computer and use it in GitHub Desktop.
Save MilkZoft/1618784 to your computer and use it in GitHub Desktop.
code.jobs - Word Count - PHP
<?php
function wordCount($text) {
$words = explode(" ", $text);
return count($words);
}
$words = wordCount("Welcome to code.jobs");
print $words;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment