3v4l.org

run code in 300+ PHP versions simultaneously
<?php function unicode2utf8($c){ $output=""; if($c < 0x80) { return chr($c); } else if($c < 0x800) { return chr( 0xc0 | ($c >> 6) ).chr( 0x80 | ($c & 0x3f) ); } else if($c < 0x10000) { return chr( 0xe0 | ($c >> 12) ).chr( 0x80 | (($c >> 6) & 0x3f) ).chr( 0x80 | ($c & 0x3f) ); } else if($c < 0x200000) { return chr(0xf0 | ($c >> 18)).chr(0x80 | (($c >> 12) & 0x3f)).chr(0x80 | (($c >> 6) & 0x3f)).chr(0x80 | ($c & 0x3f)); } return false; } function sanitizeFileName( $name ) { $invalidCharacters = array("\x2f", "\x22", "\x2a", "\x3a", "\x3c", "\x3e", "\x3f", "\x5c", "\x7f"); $name = str_replace($invalidCharacters, '', $name); $name = preg_replace('/[a-b]/', '', $name); var_dump('0 '.$name); $name = preg_replace('/[\x{0000}-\x{001F}]', '', $name); var_dump('1 '.$name); $name = preg_replace('/[\x{0080}-\x{009F}]', '', $name); var_dump('2 '.$name); $name = preg_replace('/[\x{E000}-\x{F8FF}]', '', $name); var_dump('3 '.$name); $name = preg_replace('/[\x{FDD0}-\x{FDEF}]', '', $name); var_dump('4 '.$name); $name = preg_replace('/[\x{FFF0}-\x{FFFF}]', '', $name); var_dump('5 '.$name); return $name; } $str = "blablabla ǹéñ~#>< - ".unicode2utf8(0xE001).' - '.unicode2utf8(0xFDD3).' - '.unicode2utf8(0xFD00); var_dump($str); var_dump(sanitizeFileName($str));
Output for git.master, git.master_jit, rfc.property-hooks
string(38) "blablabla ǹéñ~#>< -  - ﷓ - ﴀ" string(32) "0 lll ǹéñ~# -  - ﷓ - ﴀ" Warning: preg_replace(): No ending delimiter '/' found in /in/1kP8L on line 29 string(2) "1 " Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /in/1kP8L on line 31 Warning: preg_replace(): No ending delimiter '/' found in /in/1kP8L on line 31 string(2) "2 " Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /in/1kP8L on line 33 Warning: preg_replace(): No ending delimiter '/' found in /in/1kP8L on line 33 string(2) "3 " Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /in/1kP8L on line 35 Warning: preg_replace(): No ending delimiter '/' found in /in/1kP8L on line 35 string(2) "4 " Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /in/1kP8L on line 37 Warning: preg_replace(): No ending delimiter '/' found in /in/1kP8L on line 37 string(2) "5 " NULL

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:
69.32 ms | 403 KiB | 8 Q