作者:安全小护士 | 来源:互联网 | 2017-05-13 02:31
php生成excel列序号代码实例。复制代码代码如下:publicfunctionloop(){$loop0;$charnum65;for(;$loop150;$loop++){$quotientintval($loop26);$remainder$loop%26;$f$quotient0?ch
代码如下:
public function loop(){
$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 ."
";
}
}
http://www.bkjia.com/PHPjc/621673.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/621673.htmlTechArticle 代码如下: public function loop(){ $loop = 0; $charnum = 65; for(; $loop 150; $loop++){ $quotient = intval($loop / 26); $remainder = $loop % 26; $f = $quotient0? ch...