-
Notifications
You must be signed in to change notification settings - Fork 1
/
04-type-variables.php
67 lines (60 loc) · 1.43 KB
/
04-type-variables.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
62
63
64
65
66
67
<?php
/**
* Types de variables
*/
// on peut afficher de l'html depuis PHP et inversément
echo "<!DOCTYPE html>
<html lang=\"en\">
<head>
<meta charset=\"UTF-8\">";
?>
<title>Les types de variables</title>
</head>
<body>
<h1>Les types de variables</h1>
<h2>Les chaînes de caractère - String ou str</h2>
<p>Les chaînes de caractère permettent de mettre du texte de n'importe quel type et de n'importe quelle longueur dans une variable</p>
<?php
$string = "<p>Ici une chaîne de caractère</p>";
echo $string;
$str2 = 'Une autre chaîne';
// affichage ligne par ligne
echo '<p>';
echo $str2;
echo "</p>";
// affichage en une ligne avec interprétation de variable =>""
echo "<p>$str2</p>";
echo '<p>$str2</p>'; // non interprétée
// ou concaténation (le . en php, ou la virgule)
echo '<p>'.$str2."</p>";
$str3 = "557"; // type string car " ou '
// débuggage
var_dump($str3);
?>
<h2>Les numériques</h2>
<h3>Les entiers - integer ou int</h3>
<?php
$int = 51;
$int2 = -18;
$int3 = 0;
var_dump($int,$int2,$int3);
?>
<h3>Les nombres à virgules - float</h3>
<?php
$float = 5.23;
$float2 = -16.31975;
$float3 = 0.0000015;
var_dump($float,$float2,$float3);
?>
<h2>Les booléens - boolean bool</h2>
<p>Variable binaire (qui n'a que 2 position): true ou false. </p>
<?php
$bool = true;
$bool2 = false;
$bool3 = TRUE;
var_dump($bool,$bool2,$bool3);
// Affichage true => 1 et false ne renvoie rien
echo "<hr>".$bool."<hr>".$bool2."<hr>";
?>
</body>
</html>