Tools, FAQ, Tutorials:
Converting Leading Characters to Upper Case in PHP
How To Convert Leading Characters to Upper Case?
✍: FYIcenter.com
If you are processing an article, you may want to capitalize the first character of a sentence by using the ucfirst() function. You may also want to capitalize the first character of every words for the article title by using the ucwords() function. Here is a PHP script on how to use ucfirst() and ucwords():
<?php $string = "php string functions are easy to use."; $sentence = ucfirst($string); $title = ucwords($string); print("$sentence\n"); print("$title\n"); print("\n"); ?>
This script will print:
Php string functions are easy to use. Php String Functions Are Easy To Use.
⇒ Comparing Two Strings with strcmp() in PHP
⇐ Converting Strings to Upper/Lower Case in PHP
2016-10-13, ∼1986🔥, 0💬
Popular Posts:
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
How to troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...