list all files in directory php
$path = './';
$files = scandir($path);
$files = array_diff(scandir($path), array('.', '..'));
foreach($files as $file){
echo "<a href='$file'>$file</a>";
}
list all files in directory php
$path = './';
$files = scandir($path);
$files = array_diff(scandir($path), array('.', '..'));
foreach($files as $file){
echo "<a href='$file'>$file</a>";
}
read file using php
/*
In php to read file first you have to use 'fopen' method to open the file after that you perform different operation on it.
Like Reading file, Writing file etc.
TO read file data we have to use 'fread' method.
*/
<?php
$myfile = fopen("read_text_file.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("read_text_file.txt"));
fclose($myfile);
?>
/*
I hope it will help you.
Namaste
Stay Home Stay Safe
*/
php get all php files in a directory
foreach(glob('includes/*.php') as $file) {
...
}
php list all files in directory
scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] ) : array
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us