Created
March 18, 2012 19:48
-
-
Save tristar500/2080372 to your computer and use it in GitHub Desktop.
Text Helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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