thousand_sep 1073 ext/standard/math.c PHPAPI char *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep) thousand_sep 1075 ext/standard/math.c return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1); thousand_sep 1079 ext/standard/math.c size_t dec_point_len, char *thousand_sep, size_t thousand_sep_len, thousand_sep 1124 ext/standard/math.c if (thousand_sep) { thousand_sep 1179 ext/standard/math.c if (thousand_sep && (++count%3)==0 && s>=tmpbuf) { thousand_sep 1181 ext/standard/math.c memcpy(t + 1, thousand_sep, thousand_sep_len); thousand_sep 1200 ext/standard/math.c size_t dec_point_len, char *thousand_sep, size_t thousand_sep_len) thousand_sep 1203 ext/standard/math.c thousand_sep, thousand_sep_len, NULL); thousand_sep 1213 ext/standard/math.c char *thousand_sep = NULL, *dec_point = NULL; thousand_sep 1217 ext/standard/math.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d|ls!s!", &num, &dec, &dec_point, &dec_point_len, &thousand_sep, &thousand_sep_len) == FAILURE) { thousand_sep 1234 ext/standard/math.c if (thousand_sep == NULL) { thousand_sep 1235 ext/standard/math.c thousand_sep = &thousand_sep_chr; thousand_sep 1241 ext/standard/math.c dec_point, dec_point_len, thousand_sep, thousand_sep_len,