Skip to content

Instantly share code, notes, and snippets.

@revenkroz
Created October 12, 2020 11:43
Show Gist options
  • Select an option

  • Save revenkroz/da567d6d02ab2dc09a6fc637d0b29bdc to your computer and use it in GitHub Desktop.

Select an option

Save revenkroz/da567d6d02ab2dc09a6fc637d0b29bdc to your computer and use it in GitHub Desktop.
function jsonToPhp(string) {
return string.replace(/"\ *:\ */g, '" => ').replace(/\{\s*\}/g, '[]').replace(/{/g, '[').replace(/}/g, ']');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment