3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet { $ipaddress = $_SERVER['HTTP_CLIENT_IP']."\r\n"; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //to check if ip is pass from proxy { $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR']."\r\n"; } else { $ipaddress = $_SERVER['REMOTE_ADDR']."\r\n"; } $file = 'filename.txt'; //this is the file to which the IP address will be written; name it your way. $fp = fopen($file, 'a'); fwrite($fp, $ipaddress); fclose($fp); ?>
Output for git.master, git.master_jit
Warning: Undefined array key "REMOTE_ADDR" in /in/eVFLg on line 13 Warning: fopen(): open_basedir restriction in effect. File(filename.txt) is not within the allowed path(s): (/tmp:/in:/etc) in /in/eVFLg on line 18 Warning: fopen(filename.txt): Failed to open stream: Operation not permitted in /in/eVFLg on line 18 Fatal error: Uncaught TypeError: fwrite(): Argument #1 ($stream) must be of type resource, bool given in /in/eVFLg:20 Stack trace: #0 /in/eVFLg(20): fwrite(false, '\r\n') #1 {main} thrown in /in/eVFLg on line 20
Process exited with code 255.
Output for rfc.property-hooks
Warning: Undefined array key "REMOTE_ADDR" in /in/eVFLg on line 13 Warning: fopen(): open_basedir restriction in effect. File(filename.txt) is not within the allowed path(s): (/tmp:/in:/etc) in /in/eVFLg on line 18 Warning: fopen(filename.txt): Failed to open stream: Operation not permitted in /in/eVFLg on line 18 Fatal error: Uncaught TypeError: fwrite(): Argument #1 ($stream) must be of type resource, false given in /in/eVFLg:20 Stack trace: #0 /in/eVFLg(20): fwrite(false, '\r\n') #1 {main} thrown in /in/eVFLg on line 20
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
48.46 ms | 401 KiB | 8 Q