The code snippet is:
ob_start();
echo 'ok';
ob_get_contents();
exit;
Expected result: should print nothing.
Actual result: for some reason ok has printed
The code snippet is:
ob_start();
echo 'ok';
ob_get_contents();
exit;
Expected result: should print nothing.
Actual result: for some reason ok has printed