美文网首页
PHP输出二十六位英文字母

PHP输出二十六位英文字母

作者: king猿 | 来源:发表于2019-12-06 14:39 被阅读0次

    $ABC = [];

    for($i=65;$i<91;$i++){

        $ABC[] = strtoupper(chr($i)); //输出大写字母

    }

    return $ABC;

    相关文章

      网友评论

          本文标题:PHP输出二十六位英文字母

          本文链接:https://www.haomeiwen.com/subject/kphegctx.html