일부 Excel 문서를 생성하는 스크립트를 작업 중이며 숫자를 해당 열 이름으로 변환해야합니다. 예를 들면 :
1 => A
2 => B
27 => AA
28 => AB
14558 => UMX
이를 수행하는 알고리즘을 이미 작성했지만 더 간단하거나 빠른 방법인지 알고 싶습니다.
function numberToColumnName($number){
$abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$abc_len = strlen($abc);
$result_len = 1; // how much characters the column's name will have
$pow = 0;
while( ( $pow += pow($abc_len, $result_len) ) < $number ){
$result_len++;
}
$result = "";
$next = false;
// add each character to the result...
for($i = 1; $i<=$result_len; $i++){
$index = ($number % $abc_len) - 1; // calculate the module
// sometimes the index should be decreased by 1
if( $next || $next = false ){
$index--;
}
// this is the point that will be calculated in the next iteration
$number = floor($number / strlen($abc));
// if the index is negative, convert it to positive
if( $next = ($index < 0) ) {
$index = $abc_len + $index;
}
$result = $abc[$index].$result; // concatenate the letter
}
return $result;
}
더 나은 방법을 알고 있습니까? 더 간단하게 유지해야할까요? 또는 성능 향상?
편집하다
ircmaxell의 구현은 꽤 잘 작동합니다. 하지만이 멋진 짧은 것을 추가 할 것입니다.
function num2alpha($n)
{
for($r = ""; $n >= 0; $n = intval($n / 26) - 1)
$r = chr($n%26 + 0x41) . $r;
return $r;
}