peachpiecompiler / peachpie

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

($i--) returns wrong value #1086

Closed kripper closed 1 year ago

kripper commented 1 year ago
<?php
function Test() {
    global $TEST;
    $TEST = 1;

    $i = $TEST--;
    if($i == 0) die("WRONG: Should be 1");
}

Test();
jakubmisek commented 1 year ago

thanks @kripper!