1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/tests/output/ob_get_clean_basic_002.phpt
2014-12-21 13:23:02 +00:00

21 lines
287 B
PHP

--TEST--
Test basic behaviour of ob_get_clean()
--FILE--
<?php
/*
* proto bool ob_get_clean(void)
* Function is implemented in main/output.c
*/
ob_start();
echo "Hello World";
$out = ob_get_clean();
$out = strtolower($out);
var_dump($out);
?>
--EXPECT--
string(11) "hello world"