参考:https://stackoverflow.com/questions/13793666/how-to-convert-uppercase-text-to-title-case-using-css
参考:https://stackoverflow.com/questions/17266395/how-to-capitalize-words-in-title-tag
全部大写:
<title><?php echo strtoupper($page); ?></title>
首字母大写:
<title><?php echo ucfirst($page); ?></title>