Kod:
<?php function getDirSize($dir){ $count = 0; if( $file != '.' && $file != '..' && $file != 'All Users' && $file != 'Default User' && $file != 'LocalService' && $file != 'NetworkService' ){ $count += getDirSize("$dir/$file"); } } } } return $count; } $dir = 'C:/Documents and Settings/'; getDirSize($dir); ?>
Czy ktoś by mógł mi powiedzieć gdzie jest błąd?
PS. Na stronie nie widać żadnego błedu. Poprostu pusta strona.