Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Wo die Funktion readdir() auslesen soll wird doch mittelsEmu-Emsen hat gesagt.:eben leider nicht, es wird wieder gar nichts ausgegeben... Ich versteh das nicht...
$handle = opendir('../content/');
Gruß hpvwDoku readdir hat gesagt.:Please note the fashion in which readdir()'s return value is checked in the examples below. We are explicitly testing whether the return value is identical to (equal to and of the same type as--see Comparison Operators for more information) FALSE since otherwise, any directory entry whose name evaluates to FALSE will stop the loop (e.g. a directory named "0").
$verz = '../content';
$handle = opendir ($verz);
echo "<p>Verzeichnisse:</p>";
while ($file = readdir($handle))
{
if ($file != "." && $file != ".." && is_dir($verz.'/'.$file))
{
echo $file."<br />";
}
}
closedir($handle);
<?php
$dir = "../Klaus";
$d = opendir($dir);
while($file = readdir($d)){
if($file != "." && $file != ".." && is_dir($dir.'/'.$file)){
echo $file;
}
}
?>