Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the spbsm domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/rjsrsxcg/public_html/wp-includes/functions.php on line 6121
Php dosya listeleme – kodcafe.com

Php dosya listeleme

Php de dosya veya dizin listelemek için yapılan bir örnek;

Örnek de scandir komutu ile dizini bir dizi ye atıp onu yazdırma işlemi yaptık.. Ayrıca dizinde listelenen dosyalara url linki vermeye çalıştık..

scandir komutu
$files1 = scandir($dir);
$files2 = scandir($dir, 1); 0 artan değer olarak sıralar. 1 ise azalan değer olarak listeler.

print_r($files1);
print_r($files2);

".$yol.$dosya."
";
	
$dosyalar = scandir($yol,0);
	
foreach($dosyalar as $dosya)
{
	if(is_dir($yol.$dosya))
	{
		echo" $dosya  
";
	}
	else
		echo $dosya."
";
}
?>