I am trying to decode JSON string as follows-
<?php
$data = '{"hrm.com": { "a": "1", "b": "c" }}';
$character = json_decode($data);
$character = json_decode($character->hrm.com);
echo $character->a;
?>
I am getting the error
Undefined property: stdClass::$hrm
Any help?