|
|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-10-26 13:44 UTC] [email protected]
[2021-11-03 22:17 UTC] stefan at buerk dot tech
[2021-11-09 15:23 UTC] [email protected]
[2021-11-09 15:23 UTC] [email protected]
-Status: Open
+Status: Closed
[2021-11-09 15:25 UTC] [email protected]
-Assigned To:
+Assigned To: nikic
[2021-11-09 15:25 UTC] [email protected]
[2021-11-11 22:55 UTC] stefan at buerk dot tech
|
|||||||||||||||||||||||||||
|
All rights reserved. |
Last updated: Wed Jan 28 04:00:02 2026 UTC |
Description: ------------ We have tried to use the alpine docker images for our ci builds to start getting 8.1 compatibility. We had a weired behaviour with using gethostbyaddr('::1') in unit tests. The first call is resolved to 'localhost', or better to say all calls until one other function where called. (Do not know if all, but we had different in between). For example the version_compare(), as this was the first function in phpunit .. which changed the behavior. Maybe it is not php, but we used the same dockerfile as verification, kust switchen php 8 with 8.1 RC1 and getting this weired behaviour. We opend an issue on github for the php docker containers holding a lot of test runs. https://github.com/docker-library/php/issues/1201 Test script: --------------- <?php echo "CHECK ::1 hostname before/after version compare" . PHP_EOL; // duplicationg this line bevore other code lines, would work until something // like version_compare is used. // EXPECTED: localhost echo "#1 IPv6(::1): " . (string)gethostbyaddr('::1') . PHP_EOL; // this line chanes the return in 8.1.0RC1-alpine - but why ? // but even other codelines changed it if (!version_compare(PHP_VERSION, PHP_VERSION, '=')) {} // EXPECTED: localhost => alpine ::1, others localhost as expected echo "#2 IPv6(::1): " . (string)gethostbyaddr('::1') . PHP_EOL; Expected result: ---------------- Getting always the resolved name from /etc/hosts on subsequent calls, even if other scripts are called: CHECK ::1 hostname before/after version compare #1 IPv6(::1): localhost #2 IPv6(::1): localhost Actual result: -------------- CHECK ::1 hostname before/after version compare #1 IPv6(::1): localhost #2 IPv6(::1): ::1