Cześć ! Otóż mam taki kod :
system("dir /b *.txt > files.txt") ;
$files = file_get_contents("files.txt");
$files = str_replace( "files.txt", '', $files );
$files=explode(" ",$files) ;
print_r($files) ;
$file = $files[0] ;
$dane = file_get_contents($file);
echo($dane) ;
i mi pisze : Warning: file_get_contents( serverlog.txt ): failed to open stream: No such file or directory in C:\xamppp\htdocs\index.php on line 10
Ten plik istnieje przecież , bo jak wpisze nazwe serverlog.txt ręcznie to działa . I dlaczego program wypisuje nazwe serverlog.txt ze spacją na początku i końcu ? Wie ktoś jak rozwiązać problem ?