-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.php
47 lines (46 loc) · 1.29 KB
/
data.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
<?php
$teams = [
'Arsenal' => [
'league' => 'Premier league',
'last-time-champions' => 2004,
'city' => 'London',
'url' => 'https://www.arsenal.com/'
],
'Aston Villa' => [
'league' => 'Premier league',
'last-time-champions' => 1981,
'city' => 'Birmingham',
'url' => 'https://www.avfc.co.uk/'
],
'Manchester City' => [
'league' => 'Premier league',
'last-time-champions' => 2023,
'city' => 'Manchester',
'url' => 'https://www.mancity.com/'
],
'Newcastle' => [
'league' => 'Premier league',
'last-time-champions' => 1927,
'city' => 'Newcastle',
'nickname' => 'Magpies',
'url' => 'https://www.nufc.co.uk/'
],
'Chelsea' => [
'league' => 'Premier league',
'last-time-champions' => 2017,
'city' => 'London',
'url' => 'https://www.chelseafc.com/en'
],
'Watford' => [
'league' => 'Championship',
'last-time-champions' => null,
'city' => 'London',
'url' => 'https://www.watfordfc.com/'
],
'Brighton' => [
'league' => 'Premier league',
'last-time-champions' => null,
'city' => 'Brighton',
'url' => 'https://www.brightonandhovealbion.com/'
],
];