-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.php
36 lines (36 loc) · 1.4 KB
/
web.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
<div class="row">
<div class="col-6">
<h5>Entities</h5>
<hr>
<ol>
<?php foreach ($web->entities() as $key => $entity): ?>
<li><h6><?php echo ucfirst($entity->info()['description']) ?></h6> Certeza: <strong><?php echo number_format($entity->info()['score'] * 100 , 2) ?></strong></li>
<?php endforeach ?>
</ol>
</div>
<div class="col-6">
<h5>Imagens Correspondentes</h5>
<hr>
<ol>
<?php foreach ($web->matchingImages() as $key => $matchImage): ?>
<li><a href="<?php echo ($matchImage->info()['url']) ?>"><?php echo ($matchImage->info()['url']) ?></a></li>
<?php endforeach ?>
</ol>
<br><hr><hr>
<h5>Imagens Parcialmente Correspondentes</h5>
<hr>
<ol>
<?php foreach ($web->partialMatchingImages() as $key => $partialMatchingImage): ?>
<li><a href="<?php echo $partialMatchingImage->info()['url'] ?>"><?php echo ($partialMatchingImage->info()['url']) ?></a></li>
<?php endforeach ?>
</ol>
<br><hr><hr>
<h5>Páginas</h5>
<hr>
<ol>
<?php foreach ($web->pages() as $key => $page): ?>
<li><a href="<?php echo $page->info()['url'] ?>"><?php echo $page->info()['url']; ?></a></li>
<?php endforeach ?>
</ol>
</div>
</div>