3v4l.org

run code in 300+ PHP versions simultaneously
<?php var_dump(sprintf('%d.%d.%s-%d.%d.%d','11111','01','01','1d','','')); $a = '11111';//переполнение $b = '01'; //спереди 0 $c = '1d'; //лишние символы $d = ''; //недостаточно символов $e = 'df'; //неподходящие символы $r = array('/\d{4,1}/','/\d{2,1}/','/\d{2,1}/','/\d{2,1}/','/\d{2,1}/','/\d?/'); $i = 0; var_dump($r); echo preg_replace($r[$i++], '$0', $a).PHP_EOL; echo preg_replace($r[$i++], '$0', $b).PHP_EOL; echo preg_replace($r[$i++], '$0', $c).PHP_EOL; echo preg_replace($r[$i++], '$0', $d).PHP_EOL; echo preg_replace($r[$i++], '$0', $e).PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
string(16) "11111.1.01-1.0.0" array(6) { [0]=> string(9) "/\d{4,1}/" [1]=> string(9) "/\d{2,1}/" [2]=> string(9) "/\d{2,1}/" [3]=> string(9) "/\d{2,1}/" [4]=> string(9) "/\d{2,1}/" [5]=> string(5) "/\d?/" } Warning: preg_replace(): Compilation failed: numbers out of order in {} quantifier at offset 6 in /in/Wavan on line 11 Warning: preg_replace(): Compilation failed: numbers out of order in {} quantifier at offset 6 in /in/Wavan on line 12 Warning: preg_replace(): Compilation failed: numbers out of order in {} quantifier at offset 6 in /in/Wavan on line 13 Warning: preg_replace(): Compilation failed: numbers out of order in {} quantifier at offset 6 in /in/Wavan on line 14 Warning: preg_replace(): Compilation failed: numbers out of order in {} quantifier at offset 6 in /in/Wavan on line 15

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