/** * Converts a string with an arbitrary-base integer into the corresponding integer value. * * The string may be prefixed with "0x" for the base of 16. * * @param int $base The base in which the integer is represented by the string. Can be a number in the range from * 2 to 36. * * @return int The integer value represented by the string. */ public function toIntFromBase($base) { return CUString::toIntFromBase($this, $base); }