<div>Hallo zusammen,<br></div><div><br></div><div>ich versuche mich an einer Abfrage der "consumption"-Werte vie PHP und komme nicht weiter. Ich möchte dass lediglich die Verbrauchswerte ausgegeben werden. Leider funktionert das nicht.<br></div><div><br></div><div><?php<br></div><div>$url = '<a href="http://vz.xxxx.de/middleware.php/data/010f5190-83a4-11e4-98cd-d9350366ee4b.json?from=1+year+ago&group=day&tuples=1">http://vz.xxxx.de/middleware.php/data/010f5190-83a4-11e4-98cd-d9350366ee4b.json?from=1+year+ago&group=day&tuples=1</a>';<br></div><div>$string = file_get_contents($url, true);<br></div><div>$result = json_decode($string);<br></div><div>echo $result->consumption;<br></div><div>?><br></div><div><br></div><div>Es wird nichts ausgegeben.<br></div><div><br></div><div>var_dump ergibt das Folgende:<br></div><div><br></div><div>object(stdClass)#1 (2) {
  ["version"]=>
  string(3) "0.3"
  ["data"]=>
  object(stdClass)#2 (9) {
    ["uuid"]=>
    string(36) "010f5190-83a4-11e4-98cd-d9350366ee4b"
    ["from"]=>
    float(1421966068136)
    ["to"]=>
    float(1453495268704)
    ["min"]=>
    array(2) {
      [0]=>
      float(1453495268704)
      [1]=>
      float(26.978647878035)
    }
    ["max"]=>
    array(2) {
      [0]=>
      float(1453495268704)
      [1]=>
      float(26.978647878035)
    }
    ["average"]=>
    float(26.979)
    ["consumption"]=>
    int(236282)
    ["rows"]=>
    int(362)
    ["tuples"]=>
    array(1) {
      [0]=>
      array(3) {
        [0]=>
        float(1453495268704)
        [1]=>
        float(26.979)
        [2]=>
        int(30649)
      }
    }
  }
}
<br></div><div><br></div><div>Bin sehr dankbar für etwaige Tipps! Schönes Wochenende.<br></div><div>Alex<br></div>