Bonjour à tous,

Je viens de découvrir quelque chose:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
                        $float = 0.5; 
 
			$floatParts = explode('.', $float);
 
			$integer = $floatParts[0];
			$decimal = $floatParts[1];
 
			echo $decimal; //5
 
			$float = 0.05; 
 
			$floatParts = explode('.', $float);
 
			$integer = $floatParts[0];
			$decimal = $floatParts[1];
 
			echo $decimal; //05
 
 
			$float = 0.005;
 
			$floatParts = explode('.', $float);
 
			$integer = $floatParts[0];
			$decimal = $floatParts[1];
 
			echo $decimal; //005
 
 
			$float = 0.0005;
 
			$floatParts = explode('.', $float);
 
			$integer = $floatParts[0];
			$decimal = $floatParts[1];
 
			echo $decimal; //0005
 
 
			$float = 0.00005;
 
			$floatParts = explode('.', $float);
 
			$integer = $floatParts[0];
			$decimal = $floatParts[1];
 
			echo $decimal; //0E-5
Le dernier echo me retourne 0E-5 comment obtenir 00005?

Merci à tous pour vos réponses.