摘要: function getFirstCharter($str) { if (empty($str)) { return ''; } $fchar = ord($str{0}); if ($fchar >= ord('A') && $fchar <= ord('z')) return strtouppe 阅读全文
posted @ 2017-09-08 18:08 柒日 阅读(1447) 评论(0) 推荐(0)