输入banner图图片脚本导航/分类

php生成excel中的列序号

  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. }