9 lines
123 B
PHP
9 lines
123 B
PHP
<?php
|
|
|
|
function input(string $info): string
|
|
{
|
|
echo "$info : ";
|
|
$result = fgets(STDIN);
|
|
return trim($result);
|
|
}
|