首页 > 开发 > PHP > 正文

php生成excel列序号代码实例

2024-05-04 23:20:03
字体:
来源:转载
供稿:网友

复制代码 代码如下:


public function loop(){
  $loop = 0;
  $charnum = 65;

  for(; $loop < 150; $loop++){
   $quotient = intval($loop / 26);
   $remainder = $loop % 26;

   $f = $quotient>0? chr($charnum+$quotient-1) : '';
   $s = $remainder>=0? chr($charnum+$remainder) : '';

   echo $loop .' | '. $quotient .' | '. $remainder .' | '. $f . $s ."<br>";

   
  }
 }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表