eio_fstat

(PECL eio >= 0.0.1dev)

eio_fstatGet file status

Beschreibung

eio_fstat(
    mixed $fd,
    int $pri,
    callable $callback,
    mixed $data = ?
): resource

eio_fstat() returns file status information in result argument of callback

Parameter-Liste

fd

Stream, Socket resource, or numeric file descriptor.

pri

The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or null. If null passed, pri internally is set to EIO_PRI_DEFAULT.

callback

callback function is called when the request is done. It should match the following prototype:

void callback(mixed $data, int $result[, resource $req]);
data

is custom data passed to the request.

result

request-specific result value; basically, the value returned by corresponding system call.

req

is optional request resource which can be used with functions like eio_get_last_error()

data

Arbitrary variable passed to callback.

Rückgabewerte

eio_busy() returns request resource on success,Bei einem Fehler wird false zurückgegeben..

Beispiele

Beispiel #1 eio_lstat() example

<?php
// Create temporary file
$tmp_filename dirname(__FILE__) ."/eio-file.tmp";
touch($tmp_filename);

/* Is called when eio_fstat() done */
function my_res_cb($data$result) {
 
// Should output array with stat info
 
var_dump($result);

 if (
$data['fd']) {
  
// Close temporary file
  
eio_close($data['fd']);
  
eio_event_loop();
 }
 
// Remove temporary file
 
@unlink($data['file']);
}

/* Is called when eio_open() done */
function my_open_cb($data$result) {
 
// Prepare data for callback
 
$d = array(
  
'fd'  => $result,
  
'file'=> $data
 
);
 
// Request stat info
 
eio_fstat($resultEIO_PRI_DEFAULT"my_res_cb"$d);
 
// Process request(s)
 
eio_event_loop();
}

// Open temporary file
eio_open($tmp_filenameEIO_O_RDONLYNULLEIO_PRI_DEFAULT,
  
"my_open_cb"$tmp_filename);
eio_event_loop();
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

array(12) {
 ["st_dev"]=>
  int(2050)
  ["st_ino"]=>
  int(2489159)
  ["st_mode"]=>
  int(33188)
  ["st_nlink"]=>
  int(1)
  ["st_uid"]=>
  int(1000)
  ["st_gid"]=>
  int(100)
  ["st_rdev"]=>
  int(0)
  ["st_blksize"]=>
  int(4096)
  ["st_blocks"]=>
  int(0)
  ["st_atime"]=>
  int(1318239506)
  ["st_mtime"]=>
  int(1318239506)
  ["st_ctime"]=>
  int(1318239506)
}

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

Was genau bedeutet "Vibe Coding"? Ein tiefgehender Blick für Entwickler

In der Welt der Softwareentwicklung gibt es unzählige Wege, wie man an ein Projekt herangeht. Manche schwören auf strikte Planung, andere auf bewährte Algorithmen und wieder andere lassen sich von etwas ganz anderem leiten: ihrem Gefühl. ...

admin

Autor : admin
Kategorie: Software & Web-Development

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

kubeteco

kubet (https://kubet.eco/) – Địa chỉ trực tuyến uy tín và chuyên nghiệp Trong thời đại công nghệ số phát triển mạnh ...

Geschrieben von kubeteco am 19.04.2026 15:59:50
Forum: PHP Developer Forum
rr88kacomm

rr88ka com (https://rr88ka.com/) – Nền tảng giải trí trực tuyến hiện đại, mang đến cho người dùng một không gian trả ...

Geschrieben von rr88kacomm am 18.04.2026 14:09:42
Forum: PHP Developer Forum
IGGM: WoW TBC Classic Falls Short of Player Expectations

Hy Guys, Yeah, I get why people feel that way about WoW TBC Classic. A lot of players were expecting that original immersive grind and community v ...

Geschrieben von johny83 am 18.04.2026 09:15:48
Forum: Off-Topic Diskussionen
Fehler bei Beziehung

This really requires experience and a solid understanding of source code development. Updates and knowledge sharing make learning significantly mo ...

Geschrieben von sikasema am 18.04.2026 05:59:27
Forum: PHP Developer Forum