mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
14 lines
165 B
PHP
14 lines
165 B
PHP
--TEST--
|
|
Test return type and value for ob_start()
|
|
--FILE--
|
|
<?php
|
|
/*
|
|
* Function is implemented in main/output.c
|
|
*/
|
|
|
|
var_dump(ob_start());
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|