摘要: strtolower () 函数把所有字符转换为小写。 strtolower( string $str ) : string 参数描述 str必需。规定要转换的字符串。 返回值: 返回把字符串中所有字符转换为小写。 实例: echo strtolower("HELLO WORLD"); //hell 阅读全文
posted @ 2021-01-21 12:57 梦中程序员 阅读(58) 评论(0) 推荐(0)
摘要: strtoupper () 函数把所有字符转换为大写。 strtoupper( string $str ) : string 参数描述 str必需。规定要转换的字符串。 返回值: 返回把字符串中所有字符转换为大写。 实例: echo strtoupper("hello world"); //HELL 阅读全文
posted @ 2021-01-21 12:54 梦中程序员 阅读(30) 评论(0) 推荐(0)