Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 26, 2018 05:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/73c05c1b97b5350bdf402ca341da55cb to your computer and use it in GitHub Desktop.
Save parzibyte/73c05c1b97b5350bdf402ca341da55cb to your computer and use it in GitHub Desktop.
<?php
$flotante = 15.0;
echo json_encode($flotante) . "\n";
// 15
# Forzamos a que mantenga el .0
echo json_encode($flotante, JSON_PRESERVE_ZERO_FRACTION) . "\n";
// 15.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment