Tools, FAQ, Tutorials:
Converting Strings to Upper/Lower Case in PHP
How To Convert Strings to Upper or Lower Cases?
✍: FYIcenter.com
Converting strings to upper or lower cases are easy. Just use strtoupper() or strtolower() functions. Here is a PHP script on how to use them:
<?php $string = "PHP string functions are easy to use."; $lower = strtolower($string); $upper = strtoupper($string); print("$lower\n"); print("$upper\n"); print("\n"); ?>
This script will print:
php string functions are easy to use. PHP STRING FUNCTIONS ARE EASY TO USE.
⇒ Converting Leading Characters to Upper Case in PHP
⇐ Reformatting a Paragraph of Text in PHP
2016-10-13, 1402👍, 0💬
Popular Posts:
How to use the "return-response" Policy statement to build the response from scratch for an Azure AP...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How to create Hello-3.1.epub with WinRAR? I have all required files to create Hello-3.1.epub. To cre...