- var_dump: documentation ( source)
- json_decode: documentation ( source)
<?php
$json = '{"question":"This is \"some quotes\" and also \'single quotes\'","options":["Here is an emoji: ud83dude06","With some slashes/too and back\\\\as well"]}';
var_dump($json);
var_dump(json_decode($json));