Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 26, 2018 05:36
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/a76e844c39a73c7ac878bfcc7642efbe to your computer and use it in GitHub Desktop.
Save parzibyte/a76e844c39a73c7ac878bfcc7642efbe to your computer and use it in GitHub Desktop.
<?php
$numero = 123.20;
// A veces esto sale como cadena "123.20":
echo json_encode($numero);
# Por eso lo forzamos a que sea número
echo json_encode($numero, JSON_NUMERIC_CHECK);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment