expect_expectl
(PECL expect >= 0.1.0)
expect_expectl — Waits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen
Description
$expect
, array $cases
[, array &$match
] ) : intWaits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen.
If match
is provided, then it is filled with the result of search.
The matched string can be found in match[0]
.
The match substrings (according to the parentheses) in the original pattern can be found
in match[1]
, match[2]
, and so
on, up to match[9]
(the limitation of libexpect).
Parameters
-
expect
-
An Expect stream, previously opened with expect_popen().
-
cases
-
An array of expect cases. Each expect case is an indexed array, as described in the following table:
Expect Case Array Index Key Value Type Description Is Mandatory Default Value 0 string pattern, that will be matched against the output from the stream yes 1 mixed value, that will be returned by this function, if the pattern matches yes 2 integer pattern type, one of: EXP_GLOB
,EXP_EXACT
orEXP_REGEXP
no EXP_GLOB
Return Values
Returns value associated with the pattern that was matched.
On failure this function returns:
EXP_EOF
,
EXP_TIMEOUT
or
EXP_FULLBUFFER
Changelog
Version | Description |
---|---|
0.2.1 |
Prior to version 0.2.1, in match parameter a match string was returned,
not an array of match substrings.
|
Examples
Example #1 expect_expectl() example
<?php
// Copies file from remote host:
ini_set("expect.timeout", 30);
$stream = fopen("expect://scp user@remotehost:/var/log/messages /home/user/messages.txt", "r");
$cases = array(
// array(pattern, value to return if pattern matched)
array("password:", "asked for password"),
array("yes/no)?", "asked for yes/no")
);
while (true) {
switch (expect_expectl($stream, $cases)) {
case "asked for password":
fwrite($stream, "my password\n");
break;
case "asked for yes/no":
fwrite($stream, "yes\n");
break;
case EXP_TIMEOUT:
case EXP_EOF:
break 2; // break both the switch statement and the while loop
default:
die "Error has occurred!";
}
}
fclose($stream);
?>
Vertaling niet beschikbaar
De PHP-handleiding is nog niet in het Nederlands vertaald, dus het scherm is in het Engels. Als u wilt, kunt u het ook in het Frans of in het Duits raadplegen.
Als je de moed voelt, kun je je vertaling aanbieden ;-)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/01/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/php-rf-function.expect-expectl.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.