what is the syntax of the STRTOUPPER() function in php?
strtoupper(string)
Parameter | Description |
---|---|
string | Required. Specifies the string to convert |
examples of the STRTOUPPER() function
Example 1. In this example, we convert all characters to uppercase.
<?php
echo strtoupper("Hello WORLD!");
?>