Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> jak php wykonuje obliczenia ?
zzeus
post
Post #1





Grupa: Zarejestrowani
Postów: 441
Pomógł: 71
Dołączył: 3.09.2007
Skąd: wrocław

Ostrzeżenie: (0%)
-----


Witam,
zauważyłem ostatnio coś dziwnego chyba, może się mylę (IMG:http://forum.php.pl/style_emoticons/default/smile.gif) otóż php różnie wykonuje zaokrąglenie w zależności od tego co dostanie, np.

  1. <?php
  2. $i = 639*0.015; // daje 3.585
  3. round(639*0.015, 2); //daje 3.58
  4. round($i, 2); // daje 3.58
  5. round(9.585, 2); // daje 3.59
  6. ?>


jakie jest wytłumaczenie tych wyników ?

Pozdrawiam
Go to the top of the page
+Quote Post
 
Start new topic
Odpowiedzi
wookieb
post
Post #2





Grupa: Moderatorzy
Postów: 8 989
Pomógł: 1550
Dołączył: 8.08.2008
Skąd: Słupsk/Gdańsk




Jeżeli potrzebujesz bardzo dokładnych wartości to masz od tego
http://pl.php.net/manual/en/book.bc.php
http://pl.php.net/float -> warning
Cytat
It is typical that simple decimal fractions like 0.1 or 0.7 cannot be converted into their internal binary counterparts without a small loss of precision. This can lead to confusing results: for example, floor((0.1+0.7)*10) will usually return 7 instead of the expected 8, since the internal representation will be something like 7.9.

This is due to the fact that it is impossible to express some fractions in decimal notation with a finite number of digits. For instance, 1/3 in decimal form becomes 0.3.

So never trust floating number results to the last digit, and never compare floating point numbers for equality. If higher precision is necessary, the arbitrary precision math functions and gmp functions are available.


Ten post edytował wookieb 26.03.2009, 12:41:20
Go to the top of the page
+Quote Post

Posty w temacie


Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 17.10.2025 - 00:00