Skip to content

Instantly share code, notes, and snippets.

@Krknv
Last active December 15, 2017 05:31
Show Gist options
  • Save Krknv/42341381ad874cc9e439e2206aa67a69 to your computer and use it in GitHub Desktop.
Save Krknv/42341381ad874cc9e439e2206aa67a69 to your computer and use it in GitHub Desktop.

PHP json_encode encoding numbers as strings

$arr = array( 'row_id' => '1', 'name' => 'George' );
echo json_encode( $arr, JSON_NUMERIC_CHECK ); // {"row_id":1,"name":"George"}

https://stackoverflow.com/a/6608413/2618535

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment