3v4l.org

run code in 300+ PHP versions simultaneously
<?php $Code ='Q) A. We were watching television last night. B. We was watching television last night. A) a) A b) B Q) Four words are given below out of which three words have similar meaning. Find the odd word which has a different meaning. E.g.: A) a) speak b) discuss c) converse d) comprehend '; function explodeX($delimiters,$string) { $return_array = Array($string); // The array to return $d_count = 0; while (isset($delimiters[$d_count])) // Loop to loop through all delimiters { $new_return_array = Array(); foreach($return_array as $el_to_split) // Explode all returned elements by the next delimiter { $put_in_new_return_array = explode($delimiters[$d_count],$el_to_split); foreach($put_in_new_return_array as $substr) // Put all the exploded elements in array to return { $new_return_array[] = $substr; } } $return_array = $new_return_array; // Replace the previous return array by the next version $d_count++; } return $return_array; // Return the exploded elements } $output = explodeX(Array("Q)","A)"), $Code); //Calling the function using the split parameters echo $output[1]; //echo $output[2]; $your_array = explode(") ", $output[2]); echo $your_array[1]; ?>
Output for git.master, git.master_jit, rfc.property-hooks
A. We were watching television last night. B. We was watching television last night. A b

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