I have a word default
and I want a php function to make only first letter capital. Can we do that. Please help me out as I am very new to php coding.
fabrik
You may want to use ucfirst().
For multibyte strings, please see this snippet.
Hello Geeta you can simply use ucwords()
php function to make every first letter of your word Upper Cased!
Hope this would help!
I think that http://se2.php.net/manual/en/function.ucwords.php is the best function here :)
talk lampdeveloper
This is the code you need:
<?php
$string = 'stackoverflow';
$string = ucfirst($string);
echo $string;
?>
来源:https://stackoverflow.com/questions/5536386/how-to-make-first-letter-of-a-word-capital