Skip to content

Instantly share code, notes, and snippets.

@jotaelesalinas
Created January 16, 2018 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jotaelesalinas/c532998cdba61419089baaa6bf9990c9 to your computer and use it in GitHub Desktop.
Save jotaelesalinas/c532998cdba61419089baaa6bf9990c9 to your computer and use it in GitHub Desktop.
PHP read from console
function read_from_console ($prompt) {
if ( function_exists('readline') ) {
$line = trim(readline($prompt));
if (!empty($line)) {
readline_add_history($line);
}
} else {
echo $prompt;
$line = trim(fgets(STDIN));
}
return $line;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment