summaryrefslogtreecommitdiff
path: root/tests/output/ob_get_length_basic_001.phpt
blob: 98469c258324e2e7cd72bfafeabbb38f187f7be2 (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
26
27
28
29
30
31
32
33
34
35
36
37
--TEST--
Test return type and value, as well as basic behaviour, of ob_get_length()
--FILE--
<?php
/* 
 * proto int ob_get_length(void)
 * Function is implemented in main/output.c
*/ 

echo "No output buffers\n";
var_dump(ob_get_length());

ob_start();
var_dump(ob_get_length());
echo "hello\n";
var_dump(ob_get_length());
ob_flush();
$value = ob_get_length();
echo "hello\n";
ob_clean();
var_dump(ob_get_length());
var_dump($value);
ob_end_flush();

echo "No output buffers\n";
var_dump(ob_get_length());
?>
--EXPECTF--
No output buffers
bool(false)
int(0)
hello
int(13)
int(0)
int(0)
No output buffers
bool(false)