Files
test1/Helper/Input.php
2023-04-12 11:55:10 +07:00

9 lines
123 B
PHP

<?php
function input(string $info): string
{
echo "$info : ";
$result = fgets(STDIN);
return trim($result);
}