array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.fdatasync.php', 1 => 'fdatasync', 2 => 'Synchronizes data (but not meta-data) to the file', ), 'up' => array ( 0 => 'ref.filesystem.php', 1 => 'Filesystem Funzioni', ), 'prev' => array ( 0 => 'function.fclose.php', 1 => 'fclose', ), 'next' => array ( 0 => 'function.feof.php', 1 => 'feof', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/filesystem/functions/fdatasync.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 8 >= 8.1.0)
fdatasync — Synchronizes data (but not meta-data) to the file
This function synchronizes stream
contents to storage media, just like fsync() does,
but it does not synchronize file meta-data.
Note that this function is only effectively different in POSIX systems.
In Windows, this function is aliased to fsync().
stream
Il puntatore al file deve essere valido, e deve puntare ad un file aperto con successo da fopen() o fsockopen() (e non ancora chiuso da fclose()).
Example #1 fdatasync() example
<?php
$file = 'test.txt';
$stream = fopen($file, 'w');
fwrite($stream, 'test data');
fwrite($stream, "\r\n");
fwrite($stream, 'additional data');
fdatasync($stream);
fclose($stream);
?>