Query: mb_strtolower
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MB_STRTOLOWER(3) 1 MB_STRTOLOWER(3) mb_strtolower - Make a string lowercaseSYNOPSISstring mb_strtolower (string $str, [string $encoding = mb_internal_encoding()])DESCRIPTIONReturns $str with all alphabetic characters converted to lowercase.PARAMETERSo $str - The string being lowercased. o $encoding -The $encoding parameter is the character encoding. If it is omitted, the internal character encoding value will be used.RETURN VALUES$str with all alphabetic characters converted to lowercase.UNICODEFor more information about the Unicode properties, please see http://www.unicode.org/unicode/reports/tr21/. By contrast to strtolower(3), 'alphabetic' is determined by the Unicode character properties. Thus the behaviour of this function is not affected by locale settings and it can convert any characters that have 'alphabetic' property, such as A-umlaut (A).EXAMPLESExample #1 mb_strtolower(3) example <?php $str = "Mary Had A Little Lamb and She LOVED It So"; $str = mb_strtolower($str); echo $str; // Prints mary had a little lamb and she loved it so ?> Example #2 mb_strtolower(3) example with non-Latin UTF-8 text <?php $str = "Txiotn a nE Baos unuvn yn, dpaokeCei unp vw0po kuvs"; $str = mb_strtolower($str, 'UTF-8'); echo $str; // Prints txiotn a nE Baos unuvn yn, dpaokeCei unp vw0po kuvs ?>SEE ALSOmb_strtoupper(3), mb_convert_case(3), strtolower(3). PHP Documentation Group MB_STRTOLOWER(3)
Related Man Pages |
---|
mb_convert_case(3) - php |
mb_detect_encoding(3) - php |
db2_escape_string(3) - php |
mb_strimwidth(3) - php |
mb_strtoupper(3) - php |
Similar Topics in the Unix Linux Community |
---|
String Manipulation Question.... |
question? |
awk help |
help me! how to solve this question? |
Need help to find total counts in a string |