[PHP] fflush()

fflush() (funzione PHP) scrive su un file aperto l’output del buffering. Restituisce un valore booleano, a seconda che l’operazione riesca (true) o meno (false).

tips&tricks

Sintassi

fflush($file)
parametro descrizione
$file Il file da processare

Esempi

$file = fopen("prova.txt","r+");
// [contenuto del buffering]
fflush($file);

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

funzioni php, php

Related Articles

0 Comment