Skip to content

Instantly share code, notes, and snippets.

@tristar500
Created March 18, 2012 19:48
Show Gist options
  • Save tristar500/2080372 to your computer and use it in GitHub Desktop.
Save tristar500/2080372 to your computer and use it in GitHub Desktop.
Text Helper
<?php
/**
* Return the return the word with inital caps
*
* @access public
* @param string the word
* @return string
*/
if(!function_exists('pdf_file_name'))
{
function initialCaps($word)
{
return ucfirst(strtolower($word));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment