-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.php
61 lines (59 loc) · 1.88 KB
/
chat.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
<?php
$chat = array(
// user // text // rank // lat // lon
array(
'user' => "WDGWV",
'message' => "Hello welcome",
'status' => "admin",
'privacy' => 'global',
'team' => 'instinct',
'latitude' => 52.359734,
'longitude' => 4.664674
),
array(
'user' => "Carloooooo",
'message' => "Hello welcome",
'status' => "admin",
'privacy' => 'global',
'team' => 'instinct',
'latitude' => 52.359734,
'longitude' => 4.664674
),
array(
'user' => "MalformedUser",
'message' => "valor number one!",
'team' => 'valor',
'status' => "KIP",
'privacy' => 'global',
'latitude' => "EW",
'longitude' => "WE"
),
array(
'user' => "MalformedUser1",
'message' => "mystic number one!",
'team' => 'mystic',
'status' => "KIP",
'privacy' => 'global',
'latitude' => "EW",
'longitude' => "WE"
),
array(
'user' => "GOD",
'message' => "Instinct number one!",
'team' => 'instinct',
'status' => "guest",
'privacy' => 'global',
'latitude' => 52.359734,
'longitude' => 4.664674
),
array(
'user' => "WDGWV",
'message' => "Alleen lokale mensen kunnen dit zien :D",
'status' => "admin",
'privacy' => 'local',
'team' => 'instinct',
'latitude' => 52.359734,
'longitude' => 4.664674
),
);
file_put_contents('chat.json', json_encode($chat));