欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

   
  }
 }

相關文章

最新評論