Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8594177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:08:29+00:00 2026-06-12T00:08:29+00:00

im trying to make a console script with commands in batch with php, and

  • 0

im trying to make a console script with commands in batch with php,
and i have found this script:

for(;;){

fwrite(STDOUT, "\n");
$name = fgets(STDIN);
fwrite(STDOUT, "Hello $name");

sleep(1);
}

but it stops on every loop ,
can i make a loop and use this function as well ?
thanks ..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T00:08:30+00:00Added an answer on June 12, 2026 at 12:08 am

    You can use stream_select() to wait for data to appear in the STDIN. The optional timeout value let you go do something else when there is no input. The following code will keep printing “Waiting…” every 200 ms until you enter something:

    for(;;){
        $read = array(STDIN);
        $write = NULL;
        $except = NULL;
        if(stream_select($read, $write, $except, 0, 200000) > 0) {
            if($read) {
                $name = fgets(STDIN);
                fwrite(STDOUT, "Hello $name");
            }
        } else {
            fwrite(STDOUT, "Waiting...\n");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to make a call with this script, but am getting a
I am trying to make a Node.js script to analyse disk usage. For this,
I'm trying to make my console application into a winforms application. The console version
I'm trying to make a console app that would monitor some process and restart
So I'm trying to make a console app that imposes a time limit to
I'm trying to make a little console application that is able to deal with
I'm trying to make a cross platform console progress indicator in Java. Therefore I
I'm trying to make a little game for the console, so I need to
Possible Duplicate: C# full screen console? I am trying to make one of my
So, I'm trying to make cross-site AJAX request from my own script to the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.