我想在我的“正常”主页上显示我在自己的云实例上共享的所有文件。
我自己的cloudserver的网址是:https ://cloud.berndklaus.at/public.php?service=files&t=187e4767cb0421c7505cc3ceee450289
从那里我想在我的主页上显示文件名、大小和最后修改日期。我实际上能够显示文件名和上次修改的名称,但不能显示文件大小。
我尝试了几个想法,但没有任何效果,你能帮帮我吗?对不起,我的英语不好!!:)
要显示的代码:
$html = file_get_html('https://cloud.berndklaus.at/public.php?service=files&t=187e4767cb0421c7505cc3ceee450289');
//find the table
$td = $html->find('td');
//find all links inside the table
foreach($td as $tds)
{
// Output the Links
//echo $tds;
echo $tds->find('a',0) . "-";
echo $tds->find('span[class=modified]', 0)->plaintext;
}
?>