Condition (TRUE || TRUE && TRUE) works as intended
Condition (TRUE || TRUE && FALSE) does NOT match ((TRUE || TRUE) && FALSE) --- Should have been "FALSE" but was actually "TRUE"
Condition (TRUE || FALSE && TRUE) works as intended
Condition (TRUE || FALSE && FALSE) does NOT match ((TRUE || FALSE) && FALSE) --- Should have been "FALSE" but was actually "TRUE"
Condition (FALSE || TRUE && TRUE) works as intended
Condition (FALSE || TRUE && FALSE) works as intended
Condition (FALSE || FALSE && TRUE) works as intended
Condition (FALSE || FALSE && FALSE) works as intended
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15)
/bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15)
/bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.