GMP_MAX_BASE     1035 ext/gmp/gmp.c  	if (base && (base < 2 || base > GMP_MAX_BASE)) {
GMP_MAX_BASE     1036 ext/gmp/gmp.c  		php_error_docref(NULL, E_WARNING, "Bad base for conversion: %pd (should be between 2 and %d)", base, GMP_MAX_BASE);
GMP_MAX_BASE     1193 ext/gmp/gmp.c  	if ((base < 2 && base > -2) || base > GMP_MAX_BASE || base < -36) {
GMP_MAX_BASE     1194 ext/gmp/gmp.c  		php_error_docref(NULL, E_WARNING, "Bad base for conversion: %pd (should be between 2 and %d or -2 and -36)", base, GMP_MAX_BASE);