지난번에 PHP가 큰 정수를 구문 분석하는 방법에 대해 이야기한 후 number_format 처리에 대해 간략하게 설명한 후 이 함수의 소스 코드를 자세히 읽었습니다. 다음은 간단한 분석입니다.
string number_format ( float $number [, int $decimals = 0 ] ) string number_format ( float $number , int $decimals = 0 , string $dec_point = "." , string $thousands_sep = "," )
함수는 1, 2, 4개의 매개변수를 받을 수 있습니다(자세한 내용은 코드 구현 참조).
첫 번째 매개변수만 제공하면 숫자의 소수 부분이 제거되고 각 천 단위 구분 기호는 영어 소문자 쉼표 ","입니다.
두 개의 매개변수가 제공되면 숫자는 소수점 이하 자릿수를 유지합니다. to 설정한 값은 위와 동일합니다.
4개의 매개변수가 제공되면 number는 소수점 길이의 소수 부분을 유지하고 소수점은 dec_point로 대체되며 천 단위 구분 기호는 수천_sep
// number // 你要格式化的数字 // num_decimal_places // 要保留的小数位数 // dec_separator // 指定小数点显示的字符 // thousands_separator // 指定千位分隔符显示的字符 /* {{{ proto string number_format(float number [, int num_decimal_places [, string dec_separator, string thousands_separator]]) Formats a number with grouped thousands */ PHP_FUNCTION(number_format) { // 期望number_format的第一个参数num是double类型的,在词法阶段已经对字面量常量做了转换 double num; zend_long dec = 0; char *thousand_sep = NULL, *dec_point = NULL; char thousand_sep_chr = ',', dec_point_chr = '.'; size_t thousand_sep_len = 0, dec_point_len = 0; // 解析参数 ZEND_PARSE_PARAMETERS_START(1, 4) Z_PARAM_DOUBLE(num)// 拿到double类型的num Z_PARAM_OPTIONAL Z_PARAM_LONG(dec) Z_PARAM_STRING_EX(dec_point, dec_point_len, 1, 0) Z_PARAM_STRING_EX(thousand_sep, thousand_sep_len, 1, 0) ZEND_PARSE_PARAMETERS_END(); switch(ZEND_NUM_ARGS()) { case 1: RETURN_STR(_php_math_number_format(num, 0, dec_point_chr, thousand_sep_chr)); break; case 2: RETURN_STR(_php_math_number_format(num, (int)dec, dec_point_chr, thousand_sep_chr)); break; case 4: if (dec_point == NULL) { dec_point = &dec_point_chr; dec_point_len = 1; } if (thousand_sep == NULL) { thousand_sep = &thousand_sep_chr; thousand_sep_len = 1; } // _php_math_number_format_ex // 真正处理的函数,在本文件第1107行 RETVAL_STR(_php_math_number_format_ex(num, (int)dec, dec_point, dec_point_len, thousand_sep, thousand_sep_len)); break; default: WRONG_PARAM_COUNT; } } /* }}} */
_php_math_number_format_ex
함수에 의해 구현된 다양한 매개변수의 개수는 결국 _php_math_number_format_ex 함수를 호출하게 됩니다. 함수가 주로 수행하는 작업은 다음과 같습니다.
유지할 소수점에 따라 부동 소수점 숫자를 둥글게 처리합니다.
strpprintf 함수를 호출하여 부동 소수점 표현식을 문자열 표현으로 변환합니다. 결과 변수에 할당됩니다.
결과를 반환 값에 복사합니다(천자가 있으면 천자로 나눕니다).
strpprintf
자세한 주석은 github 프로젝트 제출 기록을 참조하세요.
요약
위 내용은 PHP는 number_format 함수의 소스 코드 공유를 읽습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!