utf8_strtoupper

Description

Converts a UTF-8 string into a uppercase UTF-8 string.

Syntax

string utf8_strtoupper (string $string)



Parameter $string

Expected type: String
Description: A UTF-8 string that should be converted to uppercase



Return value

Expected type: String
Description: The uppercase version of $string


Notes

  • Equivalent to mb_strtoupper($string, 'UTF-8') (see PHP manual)
Advertisement: