File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / output / ob_implicit_flush_basic_002.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Test ob_implicit_flush() function : ensure implicit flushing does not apply to user buffers.
--FILE--
<?php
/* Prototype  : proto void ob_implicit_flush([int flag])
 * Description: Turn implicit flush on/off and is equivalent to calling flush() after every output call 
 * Source code: main/output.c
 * Alias to functions: 
 */

echo "*** Testing ob_implicit_flush() : ensure implicit flushing does not apply to user buffers. ***\n";

// Start a user buffer
ob_start();
// Switch on implicit flushing.
ob_implicit_flush(1);

echo "This is being written to a user buffer.\n";
echo "Note that even though implicit flushing is on, you should never see this,\n";
echo "because implicit flushing affects only the top level buffer, not user buffers.\n";

// Wipe the user buffer. Nothing should have been flushed.
ob_end_clean();

echo "Done";
?>
--EXPECTF--
*** Testing ob_implicit_flush() : ensure implicit flushing does not apply to user buffers. ***
Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>