jb-data.de/scripts/ajax/tanke3.php
2025-08-11 22:23:30 +02:00

39 lines
No EOL
1.2 KiB
PHP

<?php
error_reporting(E_ALL); ini_set('display_errors',0);
$date = getdate(); $open=1;
if ($date['wday']==0) {
if ($date['hours']<5) { $open=0; }
if ($date['hours']>23) { $open=0; }
}
if ($date['wday']!=0) {
if ($date['hours']<5) { $open=0; }
if ($date['hours']>23) { $open=0; }
}
$template->assign('open', $open);
if ($open==1) {
//-------------------------------------------------------------------------------------------------------------
$page='https://www.benzinpreis-aktuell.de/tanken-hem-tankstelle-leipzig-04328-2f5b.html'; $child=''; $node=''; $innerHTML= '';
$tag='div-2 preisC';
$html3 = file_get_contents($page);
mb_convert_encoding($html,"UTF-8","auto");
$xp3 = new DOMDocument();
$xp3->loadHTML($html3);
$xp3 = new DOMXPath($xp3);
foreach($xp3->query("//div[@class='".$tag."']") as $node) {
$node->nodeValue;
break;
};
$children = $node->childNodes;
foreach ($children as $child) {
$tanke3 .= $child->ownerDocument->saveXML( $child );
}
}
if (strlen($tanke3)!=0) { $tankex=$tanke3; } else { $tankex='close'; }
$template->assign('open', 1);
$template->assign('tanke', $tankex);
$template->assign('content', 'tpl/ajax/tanke.tpl');
?>