blob: 266cda1e2434b6436b0b2edcd62c6dcc6e8ef5c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--TEST--
Test basic functionality of flush()
--FILE--
<?php
/*
* Function is implemented in ext/standard/basic_functions.c.
*/
// Verify return type
var_dump(flush());
// Ensure user buffers are not flushed by flush()
ob_start();
echo "Inside a user buffer\n";
flush();
ob_end_clean();
echo "Outside of any user buffers\n";
var_dump(flush());
?>
--EXPECT--
NULL
Outside of any user buffers
NULL
|