예제 #1
0
 public function testBase36Decode()
 {
     $this->assertEquals(10, Utils::base36Decode('a'));
 }
예제 #2
0
파일: Coder.php 프로젝트: sanchobbdo/codes
 /**
  * @param string
  * @return int
  */
 protected function keyToDigit($key)
 {
     return Utils::base36Decode($key);
 }