From bd6fe5c1ebe69bf507bf1ee6f1a88168ea02f874 Mon Sep 17 00:00:00 2001 From: Michael Spector Date: Sun, 2 Oct 2005 07:41:34 +0000 Subject: [PATCH] add expect:// wrapper notes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@197331 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/wrappers.xml | 82 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 81 insertions(+), 1 deletion(-) diff --git a/appendices/wrappers.xml b/appendices/wrappers.xml index e19b933cbb..a47c5a1dfb 100644 --- a/appendices/wrappers.xml +++ b/appendices/wrappers.xml @@ -1,5 +1,5 @@ - + List of Supported Protocols/Wrappers @@ -1209,6 +1209,86 @@ $stream = fopen("ssh2.tunnel://$session/remote.example.com:1234", 'r'); + +
+ Process Interaction Streams + expect:// PHP 4.3.0 and up (PECL) + + + expect://command + + + + This wrapper is not enabled by default + + In order to use the expect:// wrapper you must install + the Expect extension + available from PECL. + + + + + Streams opened via the expect:// wrapper provide + access to process'es stdio, stdout and stderr via PTY. + + + + + Wrapper Summary + + + + Attribute + Supported + + + + + Restricted by allow_url_fopen. + No + + + Allows Reading + Yes + + + Allows Writing + Yes + + + Allows Appending + Yes + + + Allows Simultaneous Reading and Writing + No + + + Supports stat + No + + + Supports unlink + No + + + Supports rename + No + + + Supports mkdir + No + + + Supports rmdir + No + + + +
+
+
+