utf8_strtolower

Description

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

Syntax

string utf8_strtolower (string $string)



Parameter $string

Expected type: String
Description: The UTF-8 string that should be converted to lowercase



Return value

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


Notes

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