Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

 
Reply to this topicStart new topic
> 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ę 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
ucho
post
Post #2





Grupa: Zarejestrowani
Postów: 300
Pomógł: 32
Dołączył: 31.07.2006

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


  1. <?php
  2. var_dump(639*0.015===3.585);
  3. ?>

Kod
bool(false)

Liczby zmiennoprzecinkowe tak mają, niezależnie od języka, przyzwyczajaj się tongue.gif
Go to the top of the page
+Quote Post
zzeus
post
Post #3





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

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


Czyli co, wszędzie gdzie operuję na liczbach zmiennoprzecinkowych nie mogę ufać php'owym funkcjom i muszę napisać swoje ?


--------------------
Go to the top of the page
+Quote Post
wookieb
post
Post #4





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

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: 21.08.2025 - 02:51