카타 8급 Dollars and Cents

PHP[ | ]

function format_money(float $amount): string {
  return '$'.number_format($amount, 2, '.', '');
}
function format_money(float $amount): string {
  return sprintf('$%.2f', $amount);
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}