### Description PHP 8.1.0 The following code: ```php <?php var_dump(gethostbyaddr('89.222.225.0')); var_dump(gethostbyaddr('192.88.99.1')); ``` Resulted in this output:  But I expected this output instead: ``` string(12) "89.222.225.0" (which is still shown when I use PHP 8.0.3) string(12) "192.88.99.1" ``` ### PHP Version PHP 8.1.0 ### Operating System Windows 10 (x64)