1--TEST--
2Test basic behaviour of ob_get_clean()
3--FILE--
4<?php
5/*
6 * Function is implemented in main/output.c
7*/
8
9ob_start();
10
11echo "Hello World";
12
13$out = ob_get_clean();
14$out = strtolower($out);
15
16var_dump($out);
17?>
18--EXPECT--
19string(11) "hello world"
20