Calvin Baart

Results 2 issues of Calvin Baart

Sample: ```php class Test { public function __construct() { echo "constructor\r\n"; } public function __destruct() { echo "destructor\r\n"; } } new Test(); ``` PeachPie output: ``` constructor ``` PHP output:...

wontfix
feature

Sample: ``` $datetime = DateTime::createFromFormat("Y-m-d", "00-01-01"); echo var_dump($datetime) . "\r\n"; ``` PeachPie output: ``` Unhandled Exception: System.ArgumentOutOfRangeException: Year must be between 1 and 9999. Parameter name: year at System.DateTime.IsLeapYear(Int32 year)...