You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
295 B
PHP
16 lines
295 B
PHP
<?php
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
echo 'Say hello (visible): ';
|
|
|
|
$answer = Seld\CliPrompt\CliPrompt::prompt();
|
|
|
|
echo 'You answered: '.$answer . PHP_EOL;
|
|
|
|
echo 'Say hello (hidden): ';
|
|
|
|
$answer = Seld\CliPrompt\CliPrompt::hiddenPrompt();
|
|
|
|
echo 'You answered: '.$answer . PHP_EOL;
|