php生成excel列序号代码实例

 更新时间:2013年12月24日 09:21:55   作者:  
php生成excel列序号的方法,大家参考使用吧
复制代码 代码如下:

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>";

   
  }
 }

相关文章

最新评论