zl程序教程

您现在的位置是:首页 >  工具

当前栏目

php生成excel列序号代码实例

Excel实例PHP代码 生成 序号
2023-06-13 09:15:14 时间
复制代码代码如下:

publicfunctionloop(){
  $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>";

   
  }
 }