Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

popen

Description

The popen of Filesystem for PHP opens process file pointer.

Syntax

popen ( string $command , string $mode ) : resource

Parameters

command

The command

mode

The mode

Return

Returns a file pointer identical to that returned by fopen(), except that it is unidirectional (may only be used for reading or writing) and must be closed with pclose(). This pointer may be used with fgets(), fgetss(), and fwrite(). When the mode is 'r', the returned file pointer equals to the STDOUT of the command, when the mode is 'w', the returned file pointer equals to the STDIN of the command. If an error occurs, returns FALSE.

Examples

1

<?

$handle = popen("/bin/ls", "r");
pclose($handle);

2

<?

error_reporting(E_ALL);

/* Add redirection so we can get stderr. */
$handle = popen('/path/to/executable 2>&1', 'r');
echo "$handle: " . gettype($handle) . "\n";
$read = fread($handle, 2096);
echo $read;
pclose($handle);
HomeMenu