AlkantarClanX12

Your IP : 216.73.217.123


Current Path : /usr/share/doc/php-cli-prompt/examples/
Upload File :
Current File : //usr/share/doc/php-cli-prompt/examples/example.php

<?php

require 'Seld/CliPrompt/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;