Solution for php to generate an excel column with 26 or more columns greater than Z

Source: Internet
Author: User
Tags php excel
This article describes how to generate a php excel column name with more than 26 columns greater than Z. It is a perfect technique for using PHPExcel to generate an excel column with too many columns, it has some reference value and can be used by friends.

This article describes how to generate a php excel column name with more than 26 columns greater than Z. It is a perfect technique for using PHPExcel to generate an excel column with too many columns, it has some reference value and can be used by friends.

This article describes how to generate an excel column name with more than 26 columns greater than Z in php. Share it with you for your reference. The specific analysis is as follows:

All the generated excel files use the phpExcel class. Here we will introduce the solution when the generated excel column name is greater than 26 columns and greater than Z. This is the method in the phpExcel class. I found it today, record the memo. The Code is as follows:

The Code is as follows:

Public static function stringFromColumnIndex ($ pColumnIndex = 0)
{
// Using a lookup cache adds a slight memory overhead, but boosts speed
// Caching using a static within the method is faster than a class static,
// Though it's additional memory overhead
Static $ _ indexCache = array ();

If (! Isset ($ _ indexCache [$ pColumnIndex]) {
// Determine column string
If ($ pColumnIndex <26 ){
$ _ IndexCache [$ pColumnIndex] = chr (65 + $ pColumnIndex );
} Elseif ($ pColumnIndex <702 ){
$ _ IndexCache [$ pColumnIndex] = chr (64 + ($ pColumnIndex/26). chr (65 + $ pColumnIndex % 26 );
} Else {
$ _ IndexCache [$ pColumnIndex] = chr (64 + ($ pColumnIndex-26)/676 )). chr (65 + ($ pColumnIndex-26) % 676)/26 )). chr (65 + $ pColumnIndex % 26 );
}
}
Return $ _ indexCache [$ pColumnIndex];
}


Use the following code to convert the number of a column to a letter:

The Code is as follows:

PHPExcel_Cell: stringFromColumnIndex ($ I); // starts from o

Use the following code to convert a column's letters into numbers:

The Code is as follows:

PHPExcel_Cell: columnIndexFromString ('A ');

I hope this article will help you with php programming.

,

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.