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