doc-de icon indicating copy to clipboard operation
doc-de copied to clipboard

Why hasn't the bug been fixed for decades?

Open geheimniswelten opened this issue 2 years ago • 1 comments

From manual page: https://php.net/function.ob-get-clean


ob_get_clean ends the buffer and not just deletes the content. so it does the same thing as ob_end_clean.

  • Please fix this junk
  • or finally write the documentation correctly

geheimniswelten avatar Mar 28 '22 22:03 geheimniswelten

The description looks pretty clear to me:

Gets the current buffer contents and delete current output buffer.

ob_get_clean() essentially executes both ob_get_contents() and ob_end_clean().

So where's the problem?

cmb69 avatar Mar 29 '22 11:03 cmb69