ucfirst()- 将字符串的首字母转换为大写 ucwords()- 将字符串中每个单词的首字母转换为大写 User Contributed Notes10 notes You can use this function to fix problems related to Turkish "ı", "I", "i", "İ" characters. This function also replaces the weird "i̇" character with regular "...
if ($all_lowercase) { // decapitalize short words e.g. and if ($is_name) { // all occurences will be changed to lowercase $str = preg_replace("/\\b($all_lowercase)\\b/e", 'strtolower("$1")', $str); } else { // first and last word will not be changed to lower case ...
注释 Note: 此函数可安全用于二进制对象。 参见 strtoupper() - 将字符串转化为大写 ucfirst() - 将字符串的首字母转换为大写 ucwords() - 将字符串中每个单词的首字母转换为大写 mb_strtolower() - Make a string lowercasestrtok strtoupper 字符串函数 在线手册:中文 英文PHP手册用户...
$string = utf8_encode(strtolower(utf8_decode($string))); } setlocale(LC_CTYPE, $old_locale); } return $string;}print(tolower('DÉJÀ-VU')); // prints déjà-vu?>Change the language-country codes if you want some language other than French.官方...
在PHP中,可以使用strtolower()函数将包含大写字符的字符串转换为小写字符串。这个函数接受一个字符串作为参数,并返回一个全小写的字符串。以下是一个简单的示例: 代码语言:php 复制 $original_string="ConVertInG StRiNg";$lowercase_string=strtolower($original_string);echo$lowercase_string;// 输出 "converting st...
mb_convert_case— 对字符串进行大小写转换说明 ¶ mb_convert_case(string $string, int $mode, ?string $encoding = null): string 对一个 string 进行大小写转换,转换模式由 mode 指定。 参数 ¶ string 要被转换的 string。 mode 转换的模式。它可以是 MB_CASE_UPPER、MB_CASE_LOWER、MB_CASE_TIT...
mb_convert_case— 对字符串进行大小写转换说明 mb_convert_case ( string $str , int $mode [, string $encoding = mb_internal_encoding() ] ) : string 对一个 string 进行大小写转换,转换模式由 mode 指定。 参数 str 要被转换的 string。 mode 转换的模式。它可以是 MB_CASE_UPPER、 MB_CASE_LO...
php常用字符串操作函数 array_change_key_case — 返回字符串键名全为小写或大写的数组 array_chunk — 将一个数组分割成多个 array_combine — 创建一个数组,用一个数组的值作为其键名,另一个数组的值作为其值 array_count_values — 统计数组中所有的值出现的次数...
// Make the keys lowercase so we can match: isIphone(), isiPhone(), isiphone(), etc. $key = strtolower($key); //change the keys to lower case $_rules = array_change_key_case($this->getRules()); if (array_key_exists($key, $_rules)) { ...
See strtolower() -http://www.php.net/strtolowerand comments - internally str_ireplace converts $search and $replace to lowercase to find matches. up down -4 holblin at holblin dot com¶ 13 years ago Warning with highlighting ...