Given a JSON-encoded string, which code sample correctly indicates how to decode the
string to native PHP values?

A.
$value = Json::fromJson($jsonValue);
B.
$value = json_decode($jsonValue);
C.
$json = new Json($jsonValue); $value = $json->decode();
D.
$value = Json::decode($jsonValue);