-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
88 lines (69 loc) · 1.96 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
* Função que solicita o usuário a digitar uma string.
*/
function readString($instructions)
{
print_r($instructions);
return stream_get_line(STDIN, 1024, PHP_EOL);
}
/**
* Função que solicita o usuário a digitar um numero decimal.
*/
function readFloat($instructions)
{
$floatTyped = null;
$checkIsFloat = false;
while ($floatTyped == null) {
print_r($instructions);
$floatTyped = stream_get_line(STDIN, 1024, PHP_EOL);
$checkIsFloat = filter_var($floatTyped, FILTER_VALIDATE_FLOAT);
if ($checkIsFloat == false) {
print_r('O valor digitado deve ser um numero decimal!'.PHP_EOL);
$floatTyped = null;
}
}
return $floatTyped;
}
/**
* Função que solicita o usuário a digitar uma data no formato dia/mes/ano.
*/
function readDate($instructions)
{
$dateTyped = null;
$checkIsDate = false;
while ($dateTyped == null) {
print_r($instructions);
$dateTyped = stream_get_line(STDIN, 1024, PHP_EOL);
$exploded = explode('/', $dateTyped);
if (count($exploded) == 3) {
$day = intval($exploded[0]);
$month = intval($exploded[1]);
$year = intval($exploded[2]);
$checkIsDate = checkdate($month, $day, $year);
}
if ($checkIsDate == false) {
print_r('O data '.$dateTyped.' digitada nao e valida!'.PHP_EOL);
$dateTyped = null;
}
}
return $dateTyped;
}
/**
* Função que lê as linhas de um arquivo e retorna os valores em um array.
*/
function readFileToArray($type, $filePath)
{
$lines = [];
$recipesArray = file($filePath);
for ($i = 0; $i < count($recipesArray); ++$i) {
$lineArray = str_getcsv($recipesArray[$i]);
$lines[] = [
'type' => $type,
'description' => $lineArray[0],
'value' => $lineArray[1],
'date' => $lineArray[2],
];
}
return $lines;
}