Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Created March 3, 2015 18:05
Show Gist options
  • Save Shinpeim/0053f015b68db37b2e58 to your computer and use it in GitHub Desktop.
Save Shinpeim/0053f015b68db37b2e58 to your computer and use it in GitHub Desktop.
<?php
$hash = array(
"a" => 1,
"b" => 2,
);
$jsonFormattedString = json_encode($hash);
echo $jsonFormattedString; // {"a":1,"b":2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment