IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası

IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası (https://www.ircforumlari.net/)
-   PHP (https://www.ircforumlari.net/php/)
-   -   opendir komutu yerine glob kullanımı (https://www.ircforumlari.net/php/635285-opendir-komutu-yerine-glob-kullanimi.html)

hAte 30 Ekim 2014 07:30

opendir komutu yerine glob kullanımı
 
PHP- Kodu:

$dir './';

foreach(
glob($dir.'*.txt') as $file) {
print 
$file "\n";
}

/* returns: 

./dummy.txt
./foo.txt
./ideas.txt
./robots.txt
./scite.txt

*/


/*
** other examples:
*/

// also possible:
$files glob('*.*');
sort($files);


// This shows how to use the GLOB_BRACE flag:
$images glob("images/{*.jpg,*.gif,*.png}"GLOB_BRACE);
print_r($images);


/* Valid flags:

GLOB_MARK
GLOB_NOSORT
GLOB_NOCHECK
GLOB_NOESCAPE
GLOB_BRACE
GLOB_ONLYDIR
GLOB_ERR

see PHP.net manual for more info
*/ 



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 18:31.

Powered by vBulletin® Version 3.8.8 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2024 IRCForumlari.Net