Searched defs:tobase (Results 1 - 1 of 1) sorted by relevance
| /PHP_5_4/ext/standard/ |
| H A D | math.c | 1063 /* {{{ proto string base_convert(string number, int frombase, int tobase) 1068 long frombase, tobase; local 1071 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zll", &number, &frombase, &tobase) == FAILURE) { 1080 if (tobase < 2 || tobase > 36) { 1081 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid `to base' (%ld)", tobase); 1088 result = _php_math_zvaltobase(&temp, tobase TSRMLS_CC);
|
Completed in 5 milliseconds