Directory::read

(PHP 4, PHP 5, PHP 7, PHP 8)

Directory::readDizin tanıtıcısından girdi okur

Açıklama

public Directory::read(): string|false

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 Artık bağımsız değişken kabul edilmiyor. Evvelce bir dizin tanıtıcısı kabul edilirdi.
add a note

User Contributed Notes 1 note

up
0
cjcxxh at 163 dot com
1 year ago
use
while ($row=$dir->read()){
// your code
}
to get a list of all files and directories. You can definitely use the "for" and other loops.
To Top