欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php生成excel中的列序号

程序员文章站 2022-04-08 13:41:05
...
  1. /**

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

  8. $remainder = $loop % 26;
  9. $f = $quotient>0? chr($charnum+$quotient-1) : '';

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