mirror of
https://github.com/php/php-src.git
synced 2025-01-02 08:54:04 +08:00
15 lines
253 B
PHP
15 lines
253 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)
|