×

首字母大写php

首字母大写php(首字母大写的情况)

admin admin 发表于2023-03-24 03:11:06 浏览45 评论0

抢沙发发表评论

本文目录一览:

php中把字符串首字母转大写方法?

strtoupper

(PHP 4, PHP 5, PHP 7)

strtoupper — 将字符串转化为大写

说明

strtoupper ( string $string ) : string

将 string 中所有的字母字符转换为大写并返回。

注意 “字母” 与当前所在区域有关。例如,在默认的 “C” 区域,字符 umlaut-a(ä)就不会被转换。

参数

string

输入字符串。

返回值

返回转换后的大写字符串。

范例

Example #1 strtoupper() 范例

注释

Note: 此函数可安全用于二进制对象。

参见

strtolower() - 将字符串转化为小写

ucfirst() - 将字符串的首字母转换为大写

ucwords() - 将字符串中每个单词的首字母转换为大写

mb_strtoupper() - 使字符串大写

php字符串首字母大写 如

执行效果:

源代码:

?php

  $in="hello hello,hello-hello,hello/hello";

  $out=preg_replace_callback('/([^a-zA-Z][a-z])/',

    create_function(

      '$m',

      'return strtoupper($m[0]);'

    ),

    ucfirst($in));

  echo "$in\n$out\n";

?

PHP中怎样将字符串每个单词的首字符转换成大写

php中可以通过ucfirst函数将一个字符串中的第一个字母转换成大写,而ucwords函数可以将一个字符串中每个单词的首字母转换成大写

?php

$string = "php string functions are easy to use.";

$sentence = ucfirst($string);

$title = ucwords($string);

print("$sentence\n");

print("$title\n");

print("\n");

?

输出结果如下:

Php string functions are easy to use.

Php String Functions Are Easy To Use