1、加载mod_speling模块:sudo ln -s /etc/apache2/mods-available/speling.load /etc/apache2/mods-en...
一、通过命令查看mysql是否是区分大小写的show variables like '%case_table%';lower_case_table_names=...
每个单词的首字母转换为大写:ucwords()<?php$foo = 'hello world!';$foo = ucwords($foo); // He...
strtoupper() 函数把字符串转换为大写。 strtolower() 函数把字符串转换为小写。 每个单词的首字母转换为大写:ucwords() <?php$foo =...