当前位置:Gxlcms > PHP教程 > php生成excel中的列序号

php生成excel中的列序号

时间:2021-07-01 10:21:17 帮助过:6人阅读

  1. /**

  2. * 用php代码生成excel或csv文件中的序列号
  3. */
  4. public function loop(){
  5. $loop = 0;
  6. $charnum = 65;

  7. for(; $loop < 150; $loop++){

  8. $quotient = intval($loop / 26);
  9. $remainder = $loop % 26;

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

  11. $s = $remainder>=0? chr($charnum+$remainder) : '';
  12. echo $loop .' | '. $quotient .' | '. $remainder .' | '. $f . $s ."
    ";
  13. } // bbs.it-home.org
  14. }

人气教程排行