5

ユーザーにオプションを選択するように求めるPHPスクリプトを作成しようとしています:基本的には次のようなものです:

echo "Type number of your choice below:";

echo "  1. Perform Action 1";
echo "  2. Perform Action 2";
echo "  3. Perform Action 3 (Default)";

$menuchoice = read_stdin();

if ( $menuchoice == 1) {
    echo "You picked 1";
    }
elseif ( $menuchoice == 2) {
    echo "You picked 2";
    }
elseif ( $menuchoice == 3) {
    echo "You picked 3";
    }

ユーザー入力に基づいて特定のアクションを実行できるため、これはうまく機能します。

しかし、これを拡張して、ユーザーが 5 秒以内に何かを入力しない場合、ユーザーがそれ以上操作しなくてもデフォルト アクションが自動的に実行されるようにしたいと考えています。

これはPHPでまったく可能ですか...?残念ながら、私はこのテーマの初心者です。

どんなガイダンスも大歓迎です。

ありがとう、

ヘルナンド

4

2 に答える 2

5

そのために使えますstream_select()。ここに例があります。

echo "input something ... (5 sec)\n";

// get file descriptor for stdin 
$fd = fopen('php://stdin', 'r');

// prepare arguments for stream_select()
$read = array($fd);
$write = $except = array(); // we don't care about this
$timeout = 5;

// wait for maximal 5 seconds for input
if(stream_select($read, $write, $except, $timeout)) {
    echo "you typed: " . fgets($fd) . PHP_EOL;
} else {
    echo "you typed nothing\n";
}
于 2013-05-09T16:17:27.453 に答える
0

hek2mgl コードを上記のサンプルに正確に適合させるには、コードを次のようにする必要があります...:

echo "input something ... (5 sec)\n";

// get file descriptor for stdin
$fd = fopen('php://stdin', 'r');

// prepare arguments for stream_select()
$read = array($fd);
$write = $except = array(); // we don't care about this
$timeout = 5;

// wait for maximal 5 seconds for input
if(stream_select($read, $write, $except, $timeout)) {
//    echo "you typed: " . fgets($fd);
        $menuchoice = fgets($fd);
//      echo "I typed $menuchoice\n";
        if ( $menuchoice == 1){
                echo "I typed 1 \n";
        } elseif ( $menuchoice == 2){
            echo "I typed 2 \n";
        } elseif ( $menuchoice == 3){
            echo "I typed 3 \n";
        } else {
            echo "Type 1, 2 OR 3... exiting! \n";
    }
} else {
    echo "\nYou typed nothing. Running default action. \n";
}

Hek2mgl ありがとうございました!!

于 2013-05-09T17:16:10.710 に答える