-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse.php
48 lines (45 loc) · 1.14 KB
/
parse.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
<?php
include 'CompareApps.php';
/*$links = [
'https://itunes.apple.com/ru/app/skype-dla-iphone/id304878510?mt=8',
'https://play.google.com/store/apps/details?id=com.skype.raider',
'https://itunes.apple.com/ru/app/facebook/id284882215?l=ru&mt=8&ign-mpt=uo%3D2',
'https://play.google.com/store/apps/details?id=com.facebook.katana',
'https://play.google.com/store/apps/details?id=com.vkontakte.android',
];*/
$links = $_POST['links'];
$compare = new CompareApps();
$clones = $compare->compare($links);
?>
<html>
<head>
<style>
td {
border: 1px solid black;
padding: 2px;
margin: 2px;
}
</style>
</head>
<body>
<h1>Идентичные приложения</h1>
<table>
<thead>
<tr>
<td>#</td>
<td>iTunes</td>
<td>Google Play</td>
</tr>
</thead>
<tbody>
<?foreach($clones as $key => $clone):?>
<tr>
<td><?=$key+1?></td>
<td><?=$clone['links']['itunes']?></td>
<td><?=$clone['links']['google']?></td>
</tr>
<?endforeach?>
</tbody>
</table>
</body>
</html>