Searched defs:frombase (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) { 1076 if (frombase < 2 || frombase > 36) { 1077 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid `from base' (%ld)", frombase); 1085 if(_php_math_basetozval(*number, frombase, &temp) == FAILURE) {
|
Completed in 17 milliseconds