Skip to content

Instantly share code, notes, and snippets.

@devuri
Last active October 2, 2017 19:56
Show Gist options
  • Select an option

  • Save devuri/8b9bf5e71ae3650845e0d1552ec45d6b to your computer and use it in GitHub Desktop.

Select an option

Save devuri/8b9bf5e71ae3650845e0d1552ec45d6b to your computer and use it in GitHub Desktop.
Upper Caser converts the first character of each word in a string to uppercase
<?php
//string to lowercase
$text = strtolower('HELLO WORLD');
//converts the first character of each word in a string to uppercase
echo ucwords($text);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment