3v4l.org

run code in 300+ PHP versions simultaneously
<?php mb_internal_encoding("UTF-8"); /* $s="ó12345678\r\n1234\n;"; //$s=utf8_encode("ó12345678\r\n1234\n;") // "ó12345678rn1234n;" // 012345678901234567890 print_r(mb_detect_encoding($s)."\n"); print_r(mb_strlen($s)."\n"); print_r(mb_strpos($s,';')."\n"); */ $linePart="abszolúte A_ADV ADV,;"; for ($i=0;$i<strlen($linePart);$i++) { print $i . "\t" . dechex(ord($linePart[$i])) . "\t" . $linePart[$i] . PHP_EOL; } print 'orig linePart length: '; var_dump(mb_strlen($linePart)); print 'orig linePart: '; var_dump($linePart); print '; pos: '; var_dump(mb_strpos($linePart, ';'));
Output for git.master, git.master_jit, rfc.property-hooks
0 61 a 1 62 b 2 73 s 3 7a z 4 6f o 5 6c l 6 c3 � 7 ba � 8 74 t 9 65 e 10 9 11 41 A 12 5f _ 13 41 A 14 44 D 15 56 V 16 9 17 41 A 18 44 D 19 56 V 20 2c , 21 3b ; orig linePart length: int(21) orig linePart: string(22) "abszolúte A_ADV ADV,;" ; pos: int(20)

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