3v4l.org

run code in 300+ PHP versions simultaneously
<?php function colorSequences($i1,$i2) { $m = strlen($i1); $n = strlen($i2); $at = str_split($i2); $count = 0; /*for($i=0;$i<$m;$i++){ if(count($i2) > 0){ if( in_array($i1[$i],$at) ){ $key = array_search($i1[$i],$at); unset($at[$key]); }else{ $count++; } }else{ $count++; } } return $count+(count($at))-$m;*/ return array_diff($i1, $i2); } print_r( colorSequences("xa","asdf")); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: array_diff(): Argument #1 ($array) must be of type array, string given in /in/ViVLA:25 Stack trace: #0 /in/ViVLA(25): array_diff('xa', 'asdf') #1 /in/ViVLA(29): colorSequences('xa', 'asdf') #2 {main} thrown in /in/ViVLA on line 25
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:
44.02 ms | 401 KiB | 8 Q