Glpunzi
Results
1
comments of
Glpunzi
This is my json_decode `public static function json_decode($json, $assoc=false) { ``` if(PHP_MAJOR_VERSION >= 7){ //replace single quoted values $json = preg_replace_callback('/:\s*\'(([^\']|\\\\\')*)\'\s*([},])/', function($m){ return ':'.json_encode(stripslashes($m[1])).$m[3]; }, $json); //replace single quoted keys...