3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ALL); $tests = array(); //$test_string = html_entity_decode('&#xAC00;&zwnj;&#xAC00;', ENT_COMPAT, 'UTF-8'); $uchar = mb_convert_encoding('&#' . intval(2984) . ';', 'UTF-32', 'HTML-ENTITIES'); $tests['string_length'] = (mb_strlen($uchar, 'UTF-32') === 1); $tests['string_match'] = (preg_match('/^\X$/u', $uchar) === 1); $fails = array(); foreach ($tests as $key => $value) { if ($value === false) { $fails[$key] = $value; } } if (count($fails) > 0) { echo "Failed: " . join(', ', array_keys($fails)) . PHP_EOL; exit(1); } exit(0);
Output for git.master, git.master_jit, rfc.property-hooks
Failed: string_match
Process exited with code 1.

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:
36.16 ms | 401 KiB | 8 Q