📌  相关文章
📜  php 获取每个单词的第一个字符 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:16.753000             🧑  作者: Mango

代码示例2
if(!function_exists('get_avatar')){
    function get_avatar($str){
        $acronym;
        $word;
        $words = preg_split("/(\s|\-|\.)/", $str);
        foreach($words as $w) {
            $acronym .= substr($w,0,1);
        }
        $word = $word . $acronym ;
        return $word;
    }
}