class WindowsPipes extends AbstractPipes

WindowsPipes implementation uses temporary files as handles.

Properties

array $pipes from AbstractPipes

Methods

close()

Closes file handles and pipes.

__construct($disableOutput, $input)

No description

__destruct()

No description

array
getDescriptors()

Returns an array of descriptors for the use of proc_open.

string[]
getFiles()

Returns an array of filenames indexed by their related stream in case these pipes use temporary files.

string[]
readAndWrite(bool $blocking, bool $close = false)

Reads data in file handles and pipes.

bool
areOpen()

Returns if the current state has open file handles or pipes.

static WindowsPipes
create(Process $process, $input)

Creates a new WindowsPipes instance.

Details

at line line 152
close()

Closes file handles and pipes.

at line line 41
__construct($disableOutput, $input)

Parameters

$disableOutput
$input

at line line 68
__destruct()

at line line 77
array getDescriptors()

Returns an array of descriptors for the use of proc_open.

Return Value

array

at line line 102
string[] getFiles()

Returns an array of filenames indexed by their related stream in case these pipes use temporary files.

Return Value

string[]

at line line 110
string[] readAndWrite(bool $blocking, bool $close = false)

Reads data in file handles and pipes.

Parameters

bool $blocking Whether to use blocking calls or not.
bool $close Whether to close pipes if they've reached EOF.

Return Value

string[] An array of read data indexed by their fd.

at line line 144
bool areOpen()

Returns if the current state has open file handles or pipes.

Return Value

bool

at line line 169
static WindowsPipes create(Process $process, $input)

Creates a new WindowsPipes instance.

Parameters

Process $process The process
$input

Return Value

WindowsPipes