php生成excel列序号代码实例_PHP
- WBOY原創
- 2016-06-01 11:57:57958瀏覽
复制代码 代码如下:
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 ."
";
}
}
陳述:本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn