C# Class Pchp.Core.Context

Mostra file Open project: iolevel/peachpie Class Usage Examples

Public Methods

Method Description
Echo ( PhpNumber value ) : void
Echo ( PhpString value ) : void
Echo ( PhpValue value ) : void
Echo ( double value ) : void
Echo ( int value ) : void
Echo ( long value ) : void
Echo ( object value ) : void
Echo ( string value ) : void

Protected Methods

Method Description
InitOutput ( Stream output ) : void

Initialize output of this context. To be used by the context constructor.

Private Methods

Method Description
EnsureBufferedOutput ( bool enableBuffering ) : BufferedOutput
FinalizeBufferedOutput ( ) : void

Flushes all remaining data from output buffers.

Method Details

Echo() public method

public Echo ( PhpNumber value ) : void
value PhpNumber
return void

Echo() public method

public Echo ( PhpString value ) : void
value PhpString
return void

Echo() public method

public Echo ( PhpValue value ) : void
value PhpValue
return void

Echo() public method

public Echo ( double value ) : void
value double
return void

Echo() public method

public Echo ( int value ) : void
value int
return void

Echo() public method

public Echo ( long value ) : void
value long
return void

Echo() public method

public Echo ( object value ) : void
value object
return void

Echo() public method

public Echo ( string value ) : void
value string
return void

InitOutput() protected method

Initialize output of this context. To be used by the context constructor.
protected InitOutput ( Stream output ) : void
output Stream
return void