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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?php
function bddconnect($host, $bdname, $user, $password)
{
try {
$bdd = new PDO('mysql:host=' . $host . ';dbname=' . $dbname . ';charset=utf8', $user, $password);
} catch (Exeption $e) {
die('Erreur : ' . $e->getMessage());
}
return $bdd;
}
function session()
{
session_start();
}
function secure()
{
if (!isset($_SESSION['id'])) {
header("location: ./");
}
}
function head($title)
{
?>
<head>
<meta charset="utf8" />
<meta name="viexport" content="width=device-width" />
<link href="/css/style.css" rel="stylesheet" />
<title><?= $title ?></title>
</head>
<?php
}
function search($haystack, $debut, $fin)
{
$list = [];
$indexdebut = strpos($haystack, $debut);
if ($indexdebut !== false) {
$indexdebut += strlen($debut);
$indexfin = strpos($haystack, $fin, $indexdebut);
if ($indexfin !== false) {
array_push($list, substr($haystack, $indexdebut, $indexfin - $indexdebut));
$haystack = substr($haystack, $indexfin);
$list = array_merge($list, search($haystack, $debut, $fin));
}
}
return $list;
}
function readablesize($bytes)
{
$num = 5;
$location = 'tree';
$format = ' %d %s';
if ($bytes < 2 ** 10) {
$num = $bytes;
$unit = 'o';
} elseif ($bytes < 2 ** 20) {
$num = round($bytes / 2 ** 10, 1);
$unit = 'Kio';
} elseif ($bytes < 2 ** 30) {
$num = round($bytes / 2 ** 20, 1);
$unit = 'Mio';
} elseif ($bytes < 2 ** 40) {
$num = round($bytes / 2 ** 30, 1);
$unit = 'Gio';
}
return sprintf($format, $num, $unit);
}
/* human readable date interval
* @param DateInterval $diff - l'interval de temps
* @return string
*/
function hrdi(DateInterval $diff)
{
$str = "";
if ($diff->y > 1) return $str . $diff->y . ' ans';
if ($diff->y == 1) return $str . ' 1 an et ' . $diff->m . ' mois';
if ($diff->m > 1) return $str . $diff->m . ' mois';
if ($diff->m == 1) return $str . ' 1 mois et ' . $diff->d . ($diff->d > 1 ? ' jours' : ' jour');
if ($diff->d > 1) return $str . $diff->d . ' jours';
if ($diff->d == 1) return $str . ' 1 jour et ' . $diff->h . ($diff->h > 1 ? ' heures' : ' heure');
if ($diff->h > 1) return $str . $diff->h . ' heures';
if ($diff->h == 1) return $str . ' 1 heure et ' . $diff->i . ($diff->i > 1 ? ' minutes' : ' minute');
if ($diff->i > 1) return $str . $diff->i . ' minutes';
if ($diff->i == 1) return $str . ' 1 minute';
return $str . ' quelques secondes';
}
?>
|