Re: PHP 7.1 now in rawhide

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Le 14/11/2016 à 14:23, Remi Collet a écrit :
> I will also start to work on broken ones.

Some common explanations for breakage:

- mcrypt is deprecated :)

  so raise some deprecation messages

- A non well formed numeric value encountered

  E.g.
    $a="1 GB";
    return $a+1;

  Should be
    $a="1 GB";
    return (int)$a+1;

- DateTime comparison (with microseconds)

   new DateTime("now") == new DateTime("now")

   "nearly" always true on PHP <= 7.0
   "nearly" always false on PHP >= 7.1



Remi.
_______________________________________________
php-devel mailing list -- php-devel@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to php-devel-leave@xxxxxxxxxxxxxxxxxxxxxxx




[Index of Archives]     [Fedora Users]     [Fedora Desktop]     [Fedora KDE]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]

  Powered by Linux