mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
14 lines
254 B
PHP
14 lines
254 B
PHP
--TEST--
|
|
Test return type and value for ob_start()
|
|
--FILE--
|
|
<?php
|
|
/*
|
|
* proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
|
|
* Function is implemented in main/output.c
|
|
*/
|
|
|
|
var_dump(ob_start());
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|