float und double

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • float und double

    macht php irgendeinen unterschied zwischen double und float?
    bei folgendem code krieg ich immer eine ausgabe:

    PHP-Code:
    $x 0.456;
    if (
    is_float((double) $x)) {
        echo 
    'float';
    }

    $x 0.456;
    if (
    is_double((float) $x)) {
        echo 
    'double';
    }

    $x doubleval(0.456);
    if (
    is_float($x)) {
        echo 
    'float';
    }

    $x floatval(0.456);
    if (
    is_double($x)) {
        echo 
    'double';


  • #2
    is_double
    (PHP 3, PHP 4, PHP 5)

    is_double -- Alias of is_float()
    Description
    This function is an alias of: is_float().
    man könnte davon ausgehen, dass es umgekehrt genauso ist.
    Kissolino.com

    Kommentar


    • #3
      beide funktionen sind identisch, analog zu count und sizeof

      gruß
      peter
      Nukular, das Wort ist N-u-k-u-l-a-r (Homer Simpson)
      Meine Seite

      Kommentar

      Lädt...
      X