php生成excel列序号代码实例_PHP
程序员文章站
2022-04-05 23:09:47
...
复制代码 代码如下:
public function loop(){
$loop = 0;
$charnum = 65;
for(; $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 ."
";
}
}
public function loop(){
$loop = 0;
$charnum = 65;
for(; $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 ."
";
}
}