PHP 8.4.0 RC3 available for testing

ob_get_flush

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

ob_get_flushEtkin çıktı işleyicisinin dönüş değerini boşaltır (gönderir), etkin çıktı tamponunun içeriğini döndürür ve kapatır

Açıklama

ob_get_flush(): string|false

Çıktı işleyicisini çağırır (PHP_OUTPUT_HANDLER_FINAL bayrağı ile), dönüş değerini temizler (gönderir), etkin çıktı tamponunun içeriğini döndürüp tamponu kapatır.

PHP_OUTPUT_HANDLER_REMOVABLE ile başlatılmış bir etkin çıktı tamponu yoksa ob_get_flush() başarısız olur.

Etkin çıktı tamponu PHP_OUTPUT_HANDLER_FLUSHABLE bayrağı olmaksızın başlatılsa bile ob_get_flush() çıktı işleyicisinin dönüş değerini temizler (gönderir).

Bağımsız Değişkenler

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

Dönen Değerler

Başarı durumunda etkin çıktı tamponunun içeriğini, aksi takdirde false döndürür.

Hatalar/İstisnalar

İşlev başarısız olursa bir E_NOTICE üretir.

Örnekler

Örnek 1 - ob_get_flush() örneği

<?php
// output_buffering=On
print_r(ob_list_handlers());

// tamponu bir dosyaya kaydedelim
$buffer = ob_get_flush();
file_put_contents('buffer.txt', $buffer);

print_r(ob_list_handlers());
?>

Yukarıdaki örneğin çıktısı:

Array
(
    [0] => default output handler
)
Array
(
)

Ayrıca Bakınız

  • ob_end_clean() - Etkin çıktı tamponunu temizler (siler) ve tamponu kapatır
  • ob_start() - Çıktı tamponlamasını başlatır
  • ob_get_contents() - Çıktı tamponunun içeriği ile döner
  • ob_flush() - Etkin çıktı işleyicisinin dönüş değerini temizler (gönderir)
  • ob_end_flush() - Etkin çıktı işleyicisinin dönüş değerini temizler (gönderir), etkin çıktı tamponunu kapatır
  • ob_get_clean() - Etkin çıktı tamponun içeriğini döndürüp tamponu kapatır

add a note

User Contributed Notes 3 notes

up
34
info at pcdoctor dot fr
16 years ago
Hi,
this is just to add a behavior that I haven't understud at first place.

ob_get_flush actually returns the content of the buffer as a text but also it sends the buffer back to the browser so that it's displayed on user screen.

Use ob_get_clean if you do not want the buffer to be send to the user
up
-3
taras dot dot dot di at gmail dot com
16 years ago
I don't know how exactly this works, but if you call this function, PHP would behave as if headers have been sent (even though the output has gone to a string).

This means that you can't call this function, and then call setcookie for example.

This was verified by trial and error
up
-5
zubin@byron
19 years ago
Correction to previous post: ob_get_clean() is better, ie:

<?php
// start generating html
$html = '<html><head>'; // etc
// start output buffering
ob_start();
// call function which outputs immediately
print_menu();
// append this to $html and empty buffer
$html .= ob_get_clean();
?>
To Top