-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviewApp.php
88 lines (60 loc) · 1.56 KB
/
reviewApp.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
function post_review($a_posts) {
$post = array();
echo "ジャンルを入力してください :\n";
$post['genre'] = trim(fgets(STDIN));
echo "タイトルを入力してください :\n";
$post['title'] = trim(fgets(STDIN));
echo "感想を入力してください : \n";
$post['review'] =trim(fgets(STDIN));
$line = "-------------------";
echo "ジャンル : {$post['genre']}\n{$line}\n";
echo "タイトル : {$post['title']}\n{$line}\n";
echo "感想 : \n {$post['review']}\n{$line}\n";
$a_posts[] = $post;
return $a_posts;
}
function read_reviews($a_posts){
$number = 0;
foreach($a_posts as $post){
echo "[{$number}]:{$post['title']}のレビュー\n";
$number += 1;
}
echo "見たい項目の数字を入力してください";
$input = intval(trim(fgets(STDIN)));
$post = ($a_posts[$input]);
$line = "-----------------------";
echo "ジャンル : {$post['genre']}\n{$line}\n";
echo "タイトル : {$post['title']}\n{$line}\n";
echo "感想 : \n {$post['review']}\n{$line}\n";
}
function end_program(){
exit;
}
function exception(){
echo "無効な値です。";
}
$posts = array();
while (true) {
echo "下記の数字を入力してください\n";
echo "レビュー数 : " . count($posts). "\n";
echo "[0]レビューを書く\n";
echo "[1]レビューを読む\n";
echo "[2]アプリを終了する\n";
$input = intval(trim(fgets(STDIN)));
if ($input === 0){
$posts = post_review($posts);
}
elseif ($input === 1) {
# code...
read_reviews($posts);
}
elseif ($input === 2) {
# code...
end_program();
}
else{
exception();
}
}
?>