first commit

This commit is contained in:
2023-04-12 11:55:10 +07:00
commit e0dc21312f
17 changed files with 256 additions and 0 deletions

8
Helper/Input.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
function input(string $info): string
{
echo "$info : ";
$result = fgets(STDIN);
return trim($result);
}