|
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] cmb@php.net
[2021-11-03 22:17 UTC] stefan at buerk dot tech
[2021-11-09 15:23 UTC] git@php.net
[2021-11-09 15:23 UTC] git@php.net
-Status: Open
+Status: Closed
[2021-11-09 15:25 UTC] nikic@php.net
-Assigned To:
+Assigned To: nikic
[2021-11-09 15:25 UTC] nikic@php.net
[2021-11-11 22:55 UTC] stefan at buerk dot tech
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 18:00:02 2025 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