Ahoj, nevíte jak řešit češtinu v názvech souborů?
Rád bych, aby se část menu webové aplikace generovala dle adresářové struktury, ale pokud pojmenuju složku "ěščřžýáíé", neprojde funkce is_dir() - vrátí false. Aplikace je v UTF-8, souborová struktura je windows-1250 - asi, beží na Windows.
Přihodím skript:
function getDirectory( $path = 'files/.', $level = 0 ){
$ignore = array( 'cgi-bin', '.', '..' );
// Directories to ignore when listing output. Many hosts
// will deny PHP access to the cgi-bin.
$dh = @opendir( $path );
// Open the directory to the handle $dh
while( false !== ( $file = readdir( $dh ) ) ){
// Loop through the directory
if( !in_array( $file, $ignore ) ){
// Check that this file is not to be ignored
$spaces = str_repeat( ' ', ( $level * 4 ) );
// Just to add spacing to the list, to better
// show the directory tree.
$recodedName = iconv('windows-1250','UTF-8',$file);
if( is_dir( "$path/$file" ) ){
// Its a directory, so we need to keep reading down...
echo "<strong>$spaces $recodedName</strong><br />";
getDirectory( "$path/$file", ($level+1) );
// Re-call this same function but on a new directory.
// this is what makes function recursive.
} else {
echo "$spaces $recodedName<br />";
// Just print out the filename
}
}
}
closedir( $dh );
// Close the directory handle
}
Díky.