Afficher l'entrée standard en PHP
Fermé
thepimous
Messages postés
18
Date d'inscription
vendredi 28 mars 2008
Statut
Membre
Dernière intervention
12 septembre 2008
-
18 avril 2008 à 17:09
pinouchon - 7 juin 2010 à 23:33
pinouchon - 7 juin 2010 à 23:33
A voir également:
- Afficher l'entrée standard en PHP
- Netflix standard avec pub - Accueil - Streaming
- Easy php - Télécharger - Divers Web & Internet
- Afficher appdata - Guide
- Afficher mot de passe wifi android - Guide
- Afficher taille dossier windows - Guide
2 réponses
Ce petit script marche sur windows et sur freebsd:
<?php
// script.php
$handle = fopen("php://stdin", 'r');
echo fgets($handle);
?>
exemple sur tcsh:
%>echo "haha" | php script.php
%>haha
%>php script.php
test
test
%>
<?php
// script.php
$handle = fopen("php://stdin", 'r');
echo fgets($handle);
?>
exemple sur tcsh:
%>echo "haha" | php script.php
%>haha
%>php script.php
test
test
%>
metallciste
Messages postés
50
Date d'inscription
mardi 10 juillet 2007
Statut
Membre
Dernière intervention
6 juin 2008
3
18 avril 2008 à 17:12
18 avril 2008 à 17:12
Salut,
$donnee=file_get_contents(STDIN); est fait pour ça mais tu doit bien le configurer, regarde sur https://www.php.net/manual/fr/funcref.php
$donnee=file_get_contents(STDIN); est fait pour ça mais tu doit bien le configurer, regarde sur https://www.php.net/manual/fr/funcref.php