Google App Status için PHP Basit HTML DOM Parser kullanarak

0 Cevap php

Ben bu yüzden sadece Google Mail ve Google Talk hizmeti durumunu içerecek bu benim kendi pano oluşturmak yanı sıra, sunum (html, css) değiştirebilirsiniz Google Apps Status masa kapmak için PHP Basit HTML DOM Parser kullanmak istedim.

Bir test olarak, I / çıktılarının tablo eleman bulmak istedim ama hiçbir sonuç görüntüleniyor değil.

$html = file_get_html('http://www.google.com/appsstatus');
$e = $html->find("table", 0);
echo $e->outertext; 

I / çıktılarının div unsurları bulursanız sonuçlarını gösterecektir rağmen.

$html = file_get_html('http://www.google.com/appsstatus');
$e = $html->find("div", 0);
echo $e->outertext;

Herhangi bir yardım çok takdir.

0 Cevap