PHP Classes

File: demo/helloworld2.php

Recommend this page to a friend!
  Classes of Thomas Björk   OBPipe   demo/helloworld2.php   Download  
File: demo/helloworld2.php
Role: Example script
Content type: text/plain
Description: A simple Hello, world! demo
Class: OBPipe
Manipulate PHP output with named pipe buffers
Author: By
Last change: Update of demo/helloworld2.php
Date: 2 months ago
Size: 430 bytes
 

Contents

Class file image Download
<?php
include('../obpipe.php');

// Create a dynamic output handler
$pipe = new OBPipe();

// Activate the pipe called bravo
$pipe->activate('bravo');

// Output some text
echo ", world!";

// Activate the pipe named alpha
$pipe->activate('alpha');

// Output some text
echo "Hello";

// Reorder the output
$pipe->setNames(array('alpha', 'bravo'));

/*
 * The expected output is:
 * "Hello, world!"
 */
?>