1--TEST--
2Test return type and value for ob_start()
3--FILE--
4<?php
5/*
6 * Function is implemented in main/output.c
7*/
8
9var_dump(ob_start());
10
11?>
12--EXPECT--
13bool(true)
14