How to do Press Any Key To Continue with php.exe

I am wondering if there is a better way to do this than what I have come up with. The
first example waits for the ENTER key to be pressed, but any other characters you press
show up on the screen

The second method works with any key being pressed, but uses exec().

Any other suggestions? Basically I am wanting the console window to stay open at the end
of the script so the user can read what was displayed in the window before the console
window closes down.

Thanks

> php test.php

<?php
//test. php

//Not the most elegant, but it works!
echo "\n\n";
echo "Press ENTER to continue... ";
$handle = fopen("php://stdin","r");
$getLine = "";
while ($getLine == ""):
$getLine = fgets($handle);
endwhile;

//A little better but uses exec()
echo "\n\n";
echo "Press ANY KEY to continue... ";
exec("pause");

?>

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
jds [ Di, 21 Juni 2011 00:06 ] [ ID #2061318 ]

Re: How to do Press Any Key To Continue with php.exe

On 20 June 2011 23:26, JDS <jds [at] forerunnertv.com> wrote:
> I am wondering if there is a better way to do this than what I have come =
up
> with. The first example waits for the ENTER key to be pressed, but any ot=
her
> characters you press show up on the screen
>
> The second method works with any key being pressed, but uses exec().
>
> Any other suggestions? Basically I am wanting the console window to stay
> open at the end of the script so the user can read what was displayed in =
the
> window before the console window closes down.
>
> Thanks
>
>> php test.php
>
> <?php
> //test. php
>
> //Not the most elegant, but it works!
> echo "\n\n";
> echo "Press ENTER to continue... ";
> $handle =3D fopen("php://stdin","r");
> $getLine =3D "";
> while ($getLine =3D=3D ""):
> =C2=A0 =C2=A0$getLine =3D fgets($handle);
> endwhile;
>
> //A little better but uses exec()
> echo "\n\n";
> echo "Press ANY KEY to continue... ";
> exec("pause");
>
> ?>

[at] ECHO OFF
C:\PHP5\php.exe C:\Path\to\Script.php --arg1 --arg2 --arg3
PAUSE




--
Richard Quadling
Twitter : EE : Zend : PHPDoc
[at] RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY : bit.ly/lFnVea

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Richard Quadling [ Di, 21 Juni 2011 11:14 ] [ ID #2061377 ]
PHP » gmane.comp.php.windows » How to do Press Any Key To Continue with php.exe

Vorheriges Thema: STDOUT and STDERR with php.exe and php-win.exe on Win XP
Nächstes Thema: where is source code for urlencode and urldecode?