3v4l.org

run code in 300+ PHP versions simultaneously
<?php function noBigInt($json) { $max_int_length = strlen((string) PHP_INT_MAX) - 1; return preg_replace('/:\s*(-?\d{'.$max_int_length.',})/', ': "$1"', $json); } $json = '{"string":"3 Little Pigs"}'; var_dump(json_decode(noBigInt($json),JSON_NUMERIC_CHECK));

preferences:
77.23 ms | 402 KiB | 5 Q