PHP strtoupper Function: Convert Strings to Uppercase

PHP Uppercase Strings

Use strtoupper() function when you want to change all letters in a string to uppercase in PHP. It works with standard ASCII characters.

Understand the Uppercase Function (strtoupper) in PHP

The strtoupper() changes every letter in a string to its uppercase version. It does not touch numbers or symbols. It works on ASCII strings, so it may not handle accented or non-English characters as expected.

strtoupper($string)

You pass in a text. It gives you a new string in all uppercase.

Here is a quick example:

$name = "john doe";
$upper = strtoupper($name);
echo $upper;

The output:

JOHN DOE

This example takes a name with lowercase letters and turns it into full uppercase. The function does not change spaces or punctuation.

But, how strtoupper() handles numbers and symbols?

It leaves numbers and spaces alone. It only changes letters.

For example:

$text = "[email protected]";
echo strtoupper($text);

The output:

[email protected]

The numbers and the @ symbol stay the same.

You can use strtoupper() on both sides when you compare strings. That does not care about the case.

$userInput = "yes";
$answer = "YES";

if (strtoupper($userInput) === strtoupper($answer)) {
    echo "Match";
}

This makes the check work no matter how the user types their answer.

Difference Between strtoupper() and mb_strtoupper()

strtoupper() only works well with basic English characters. It may not convert everything if your text uses other languages or accents.

mb_strtoupper() handles multibyte characters like (é, ü, ç). You must use the correct encoding (usually UTF-8).

$text = "français";
echo strtoupper($text);         
echo mb_strtoupper($text);     

Output:

FRANÇAIS (wrong result)
FRANÇAIS (correct)

Examples of Uppercase Function in PHP

Convert an array of strings to uppercase:

$colors = ["red", "green", "blue"];
$upperColors = array_map("strtoupper", $colors);

print_r($upperColors);

Output:

["RED", "GREEN", "BLUE"]

This runs strtoupper() on every item in the array.

Uppercase multibyte strings with mb_strtoupper():

$text = "schön";
$upper = mb_strtoupper($text, "UTF-8");

echo $upper; 

Output:

SCHÖN

ö would stay lowercase without mb_strtoupper(). This function handles it the right way.

Normalize user input for email:

$email = "[email protected]";
$cleanEmail = strtolower($email);

echo $cleanEmail;

Output:

[email protected]

You can combine strtolower() and strtoupper() based on your goal. Use strtolower() for emails, and strtoupper() for codes or labels.

Format product codes:

$code = "abc-123";
$code = strtoupper($code);

echo $code;

Output:

ABC-123

Product codes often need consistent casing. strtoupper() helps keep them uniform.

Wrapping Up

You learned how to use strtoupper() to convert strings to uppercase. You also saw how it behaves with symbols and arrays with multibyte text. Also, you now know when to use strtoupper() and when to switch to mb_strtoupper().

Here is a quick recap:

  • Use strtoupper() for basic ASCII text
  • Use mb_strtoupper() for non-English characters
  • Combine with arrays and other functions for more control
  • Helpful in case-insensitive checks and formatting

Thank you for reading. Click here to see more PHP tutorials.

FAQs

What does strtoupper() do in PHP?

It converts all letters in a string to uppercase.

Does strtoupper() change numbers?

No. It leaves numbers and symbols as they are.

How do I convert non-English letters to uppercase?

Use mb_strtoupper() with UTF-8 encoding.

Can I use strtoupper() on an array?

Not directly. Use array_map("strtoupper", $array).

Is strtoupper() case-insensitive?

No. It only converts the string. You must use it with a comparison for case-insensitive checks.

What happens if I pass an empty string?

It returns an empty string.

Similar Reads

PHP filter_var: Understand How to Sanitize Input

PHP didn’t have a way to check or clean user input. Developers used scattered code—some wrote custom checks, others used…

Polymorphism in PHP: How It Works with Examples

PHP 5 added support for classes and interfaces. This made object-oriented code possible with one feature being polymorphism. That means…

PHP require_once and require

Essentially, “require” and “require_once” are directives in PHP to include and evaluate a specific file during the execution of a…

PHP DOMDocument: XML DOM Parser Guide

In PHP, if you're working with XML files, you’ll probably work with DOMDocument. It is a powerful class, enabling you…

Constants in PHP: How They Work & Examples

Constants in PHP store fixed values that don’t change during execution. We will cover the following topics in this article:…

PHP OOP Programming: A Complete Tutorial

A complex web application needs proper organization and maintenance to keep your code structured. This is where PHP Object-Oriented Programming…

PHP Array Operators: Union, Equality, Identity

PHP arrays serve as powerful tools for storing multiple values in a single variable. To manipulate arrays efficiently, PHP provides…

PHP JSON Handling with json_encode & json_decode

JSON is used in most of your web applications for dealing with data, and so, in a way, PHP JSON…

PHP Functions: The Complete Guide for Beginners

So, what is a function? Quite simply, a function in PHP is a set of instructions you write once, and…

PHP Syntax: Standard Tags, Echo, and Short Tags

Understanding PHP syntax is like the basics of any language—PHP syntax defines the rules for writing code that a server…

Previous Article

PHP strpos Function: How it Works with Examples

Next Article

JavaScript Loops and Iteration: How They Work with Examples

Write a Comment

Leave a Comment

Your email address will not be published. Required fields are marked *


Subscribe to Get Updates

Get the latest updates on Coding, Database, and Algorithms straight to your inbox.
No spam. Unsubscribe anytime.