Answers for "lwoercase php"

PHP
11

convert string to lowercase in php

/* strtolower() function converts  string to lowercase. */
<?php
echo strtolower("Hello WORLD 123");
?>
// Output:hello world 123
Posted by: Guest on July-17-2020
2

php capital string

<?php
echo strtoupper("Hello WORLD!");
?>
Posted by: Guest on June-26-2020

Browse Popular Code Answers by Language