Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
<?php
function searchteh ( $find, $dir = '.' )
{
$handle = opendir ( $dir ) or die ( 'nuek' );
while ( FALSE !== ( $bestand = readdir ( $handle ) ) )
{
if ( $bestand != '.' && $bestand != '..' )
{
if ( is_dir ( $dir . '/' . $bestand ) == TRUE )
{
searchteh ( $find, $dir . '/' . $bestand );
}
echo $dir . '/' . $find . '<br />';
}
}
}
searchteh ( 'index' );
?>
<?php
function searchteh ( $find, $dir = 'm:/test/' )
{
$handle = opendir ( $dir ) or die ( 'nuek' );
while ( FALSE !== ( $bestand = readdir ( $handle ) ) )
{
if ( $bestand != '.' && $bestand != '..' )
{
if ( is_dir ( $dir . '/' . $bestand )
{
searchteh ( $find, $dir . '/' . $bestand );
}
echo $dir . '/' . $find . '<br />';
}
}
}
searchteh ( 'index' );
?>
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.