You appear to be a bot. Output may be restricted
Description
Return the Upper case first letter version of the stringRequired since ucfirst() only accepts one parameter but sometimes we pass more parameters e.g. when invoked as a callback in bw_array_get_dcb()
Usage
$string = bw_ucfirst( $str );
Parameters
- $str
- ( string ) required – the string to pass to ucfirst()
Returns
string the result of ucfirst()Source
File name: oik/includes/bw_register.phpLines:
1 to 4 of 4
function bw_ucfirst( $str ) { $ucfirst = ucfirst( $str ); return( $ucfirst ); }View on GitHub View on Trac