3v4l.org

run code in 300+ PHP versions simultaneously
<?php //$ip_address = $_SERVER['REMOTE_ADDR'] //whether ip is from share internet if (!empty($_SERVER['HTTP_CLIENT_IP'])) { $ip_address=$_SERVER['HTTP_CLIENT_IP']; } //whether ip is from proxy elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ip_address=$_SERVER['HTTP_X_FORWARDED_FOR']; } //whether ip is from remote address else { $ip_address = $_SERVER['REMOTE_ADDR'] } echo $ip_address; ?>
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.29
Parse error: syntax error, unexpected '}' in /in/CoHLi on line 20
Process exited with code 255.

preferences:
186.2 ms | 1399 KiB | 66 Q