1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/output/ob_get_clean_basic_002.phpt
2020-06-24 13:13:44 +02:00

20 lines
252 B
PHP

--TEST--
Test basic behaviour of ob_get_clean()
--FILE--
<?php
/*
* 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"