php-doc-en/reference/expect/reference.xml
Hannes Magnusson c030e2adf7 Upgrade to DocBook5:
- All id attributes are now xml:id
 - Add docbook namespace to all root elements
 - Replace <ulink /> with <link xlink:href />
 - Minor markup fixes here and there


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@238160 c90b9560-bf6c-de11-be94-00142212c4b1
2007-06-20 22:25:43 +00:00

106 lines
2.5 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- Purpose: fileprocess.process -->
<!-- Membership: pecl -->
<reference xml:id="ref.expect" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Expect Functions</title>
<titleabbrev>Expect</titleabbrev>
<partintro>
<section xml:id="expect.intro">
&reftitle.intro;
<para>
This extension allows to interact with processes through PTY. You may
consider using the <link linkend="wrappers.expect"><literal>expect://</literal>
wrapper</link> with the <link linkend="ref.filesystem">filesystem
functions</link> which provide a simpler and more intuitive interface.
</para>
</section>
<section xml:id="expect.requirements">
&reftitle.required;
<para>
This module uses the functions of the <link
xlink:href="&url.expect;">expect</link> library.
You need libexpect version &gt;= 5.43.0.
</para>
</section>
&reference.expect.configure;
&reference.expect.ini;
<section xml:id="expect.resources">
&reftitle.resources;
<para>
<function>expect_popen</function> returns an open PTY stream used by
<function>expect_expectl</function>.
</para>
</section>
&reference.expect.constants;
<section xml:id="expect.examples">
&reftitle.examples;
<para>
This example connects to the remote host via SSH, and prints the remote
uptime.
</para>
<example>
<title>Expect Usage Example</title>
<programlisting role="php">
<![CDATA[
<?php
ini_set ("expect.loguser", "Off");
$stream = fopen ("expect://ssh root@remotehost uptime", "r");
$cases = array (
array (0 => "password:", 1 => PASSWORD)
);
switch (expect_expectl ($stream, $cases))
{
case PASSWORD:
fwrite ($stream, "password\n");
break;
default:
die ("Error was occurred while connecting to the remote host!\n");
}
while ($line = fgets ($stream)) {
print $line;
}
fclose ($stream);
?>
]]>
</programlisting>
</example>
</section>
</partintro>
&reference.expect.functions;
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->