tobase           1761 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, tobase)
tobase           1046 ext/standard/math.c 	long frombase, tobase;
tobase           1049 ext/standard/math.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zll", &number, &frombase, &tobase) == FAILURE) {
tobase           1058 ext/standard/math.c 	if (tobase < 2 || tobase > 36) {
tobase           1059 ext/standard/math.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid `to base' (%ld)", tobase);
tobase           1066 ext/standard/math.c 	result = _php_math_zvaltobase(&temp, tobase TSRMLS_CC);