Converting Strings to Upper or Lower Case in PHP


Convert strings to all uppercase or lowercase.

Source Code

echo strtoupper("hello, world!"); // Outputs: HELLO, WORLD!
echo strtolower("HELLO, WORLD!"); // Outputs: hello, world!
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments