function Number::alphadecimalToInt
Same name in other branches
- 9 core/lib/Drupal/Component/Utility/Number.php \Drupal\Component\Utility\Number::alphadecimalToInt()
- 10 core/lib/Drupal/Component/Utility/Number.php \Drupal\Component\Utility\Number::alphadecimalToInt()
- 11.x core/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
2 calls to Number::alphadecimalToInt()
- Comment::preSave in core/
modules/ comment/ src/ Entity/ Comment.php - Acts on an entity before the presave hook is invoked.
- NumberTest::testConversions in core/
tests/ Drupal/ Tests/ Component/ Utility/ NumberTest.php - Tests the alphadecimal conversion functions.
File
-
core/
lib/ Drupal/ Component/ Utility/ Number.php, line 97
Class
- Number
- Provides helper methods for manipulating numbers.
Namespace
Drupal\Component\UtilityCode
public static function alphadecimalToInt($string = '00') {
return (int) base_convert(substr($string, 1), 36, 10);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.