## Auswertung Fritzbox Vorbereitung
$fritz_Username = "ftpuser"; # <--- Dises ist neu und ein muss
$fritz_url = '192.168.0.1';
$fritz_pwd = 'UltraGeheim007';
// Get Challenge-String
$l = simplexml_load_string(file_get_contents(sprintf('http://%s/login_sid.lua', $fritz_url)));
$c = $l->Challenge;
// Get SID
$c_str = sprintf("%s-%s", $c, $fritz_pwd);
$md_str = md5(iconv("UTF-8", "UTF-16LE", $c_str));
$fburl = sprintf('http://%s/login_sid.lua?user=&response=%s', $fritz_url, $c.'-'.$md_str);
$fbcontent_a = file_get_contents($fburl);
$l = simplexml_load_string($fbcontent_a);
$sid = $l->SID;
// Get Calllist
$fbcontent_b = file_get_contents(sprintf('http://%s:49000/calllist.lua?sid=%s', $fritz_url, $sid));
echo $fbcontent_b."<br>";
$cl = simplexml_load_string($fbcontent_b);
## Auswertung Fritzbox
## Start der Auswertung
foreach($cl->Call as $call) {
switch($call->Type) {
case 11:
...