You are here

public static function Number::alphadecimalToInt in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Drupal/Component/Utility/Number.php \Drupal\Component\Utility\Number::alphadecimalToInt()

Decodes a sorting code back to an integer.

Parameters

string $string: The alpha decimal value to convert

Return value

int The integer value.

See also

\Drupal\Component\Utility\Number::intToAlphadecimal

File

lib/Drupal/Component/Utility/Number.php, line 101
Contains \Drupal\Component\Utility\Number.

Class

Number
Provides helper methods for manipulating numbers.

Namespace

Drupal\Component\Utility

Code

public static function alphadecimalToInt($string = '00') {
  return (int) base_convert(substr($string, 1), 36, 10);
}