eio_statvfs

(PECL eio >= 0.0.1dev)

eio_statvfsGet file system statistics

Beschreibung

eio_statvfs(
    string $path,
    int $pri,
    callable $callback,
    mixed $data = ?
): resource

eio_statvfs() returns file system statistics information in result argument of callback

Parameter-Liste

path

Pathname of any file within the mounted file system

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_statvfs() returns request resource on success,Bei einem Fehler wird false zurückgegeben.. On success assigns result argument of callback to an array.

Beispiele

Beispiel #1 eio_statvfs() example

<?php
$tmp_filename 
'/tmp/eio-file.tmp';
touch($tmp_filename);

function 
my_statvfs_callback($data$result) {
    
var_dump($data);
    
var_dump($result);

 @
unlink($data);
}

eio_statvfs($tmp_filenameEIO_PRI_DEFAULT"my_statvfs_callback"$tmp_filename);
eio_event_loop();
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

string(17) "/tmp/eio-file.tmp"
array(11) {
  ["f_bsize"]=>
  int(4096)
  ["f_frsize"]=>
  int(4096)
  ["f_blocks"]=>
  int(262144)
  ["f_bfree"]=>
  int(262111)
  ["f_bavail"]=>
  int(262111)
  ["f_files"]=>
  int(1540815)
  ["f_ffree"]=>
  int(1540743)
  ["f_favail"]=>
  int(1540743)
  ["f_fsid"]=>
  int(0)
  ["f_flag"]=>
  int(4102)
  ["f_namemax"]=>
  int(255)
}

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

Mehrere Aufträge im Hintergrund ausführen

Have you considered using proc_open() or spawning curl requests asynchronously to simulate background processing? Alternatively, using something l ...

Geschrieben von mariahcarey am 11.06.2025 09:00:44
Forum: PHP Developer Forum
Grid und Pos geht nicht ...

You're using both grid-area and grid-column for your sliders, which can conflict if not aligned properly with your declared grid-template-areas. ...

Geschrieben von diannereese am 11.06.2025 08:48:23
Forum: PHP Developer Forum
Berechnungen durchführen

It can definitely be frustrating when you're trying to get the input and output just right with code. Hopefully, Matze gets some helpful advice! F ...

Geschrieben von collison am 11.06.2025 07:02:44
Forum: PHP Developer Forum
Berechnungen durchführen

That sounds like a tricky web development problem Matze is facing! It's always those little input validation details that can be surprisingly chal ...

Geschrieben von collison am 11.06.2025 07:01:07
Forum: PHP Developer Forum