Zend
200-530 · Question #75
You want to present the following formatted number: "999.000.000,00". Which function call is correct?
The correct answer is C. print number_format(999000000, 2, ',', '.'). See the full explanation below for the reasoning.
Question
You want to present the following formatted number: "999.000.000,00". Which function call is correct?
Options
- Aprint format_number(999000000);
- Bprint number_format(999000000);
- Cprint number_format(999000000, 2, ',', '.');
- Dprint number_format(999000000, 2);
- Eprint_number(999000000, 2, ',', '.')
How the community answered
(36 responses)- A3% (1)
- B6% (2)
- C78% (28)
- D3% (1)
- E11% (4)
Community Discussion
No community discussion yet for this question.