tobase           1751 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, tobase)
tobase           1255 ext/standard/math.c 	zend_long frombase, tobase;
tobase           1258 ext/standard/math.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zll", &number, &frombase, &tobase) == FAILURE) {
tobase           1267 ext/standard/math.c 	if (tobase < 2 || tobase > 36) {
tobase           1268 ext/standard/math.c 		php_error_docref(NULL, E_WARNING, "Invalid `to base' (%pd)", tobase);
tobase           1275 ext/standard/math.c 	result = _php_math_zvaltobase(&temp, (int)tobase);