-
Notifications
You must be signed in to change notification settings - Fork 813
Open
Labels
Status: Needs TriagebugDocumentation contains incorrect informationDocumentation contains incorrect information
Description
Description
PHP literal value of the minimal int64 overflows min bound value.
The following code:
<?php
echo 'value: ' . \PHP_INT_MIN . "\n"
. 'literal: ' . -9223372036854775808 . "\n"
. 'eq: ' . (-9223372036854775808 === \PHP_INT_MIN ? 'eq' : 'neq') . "\n";
echo 'value: ' . \PHP_INT_MAX . "\n"
. 'literal: ' . 9223372036854775807 . "\n"
. 'eq: ' . (9223372036854775807 === \PHP_INT_MAX ? 'eq' : 'neq') . "\n";
Resulted in this output:
value: -9223372036854775808
literal: -9.2233720368548E+18
eq: neq
value: 9223372036854775807
literal: 9223372036854775807
eq: eq
# Exactly the same behavior with int32 (if rewrite assertions and run on x86 environment):
value: -2147483648
literal: -2147483648 # <<< Note that in this case, the literal is displayed "as is",
# however, the equivalence with the PHP_INT_MIN is still violated
eq: neq
value: 2147483647
literal: 2147483647
eq: eq
But I expected this output instead:
value: -9223372036854775808
literal: -9223372036854775808
eq: eq
value: 9223372036854775807
literal: 9223372036854775807
eq: eq
-9223372036854775808
is valid int64 min value on x64 platform.-2147483648
is valid int32 min value on x86 platform.
All versions of PHP (checked since php 7.0) are affected by this bug. This error is reproduced both on Debian linux and on Windows (checked for win11).
PHP Version
7.0.0 ... 8.2.4 (Any)
Operating System
No response
Metadata
Metadata
Assignees
Labels
Status: Needs TriagebugDocumentation contains incorrect informationDocumentation contains incorrect information