Home > php教程 > php手册 > body text

php生成excel列序号代码实例

WBOY
Release: 2016-06-06 20:26:02
Original
981 people have browsed it

php生成excel列序号的方法,大家参考使用吧

复制代码 代码如下:


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 ."
";

   
  }
 }

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!