php get files in folder

Solutions on MaxInterview for php get files in folder by the best coders in the world

showing results for - "php get files in folder"
Angelo
24 Jun 2020
1$files = array_diff(scandir($path), array('.', '..'));
2