peachpiecompiler / peachpie

PeachPie - the PHP compiler and runtime for .NET and .NET Core
https://www.peachpie.io
Apache License 2.0
2.33k stars 202 forks source link

type analysis assumes ($x-1) is always integer type #993

Closed jakubmisek closed 2 years ago

jakubmisek commented 2 years ago

test:

function f($iSbdSize)
{
    if ($iSbdSize > 0) // makes the assumption
    {
        for ($i = 0; $i < ($iSbdSize - 1); $i++) // treats double as long -> error
        {
            echo $i, '.';
        }
    }
}