3v4l.org

run code in 300+ PHP versions simultaneously
<?php print_r(array_diff(array(312, 401, 1599, 3), array(401) )); // returns [312, 1599, 3] print_r(array_filter(array(312, 401, 1599, 3), function($i){return $i != 401;})); print_r(array_delete( array(312, 401, 1599, 3), 401 ) ); $array = array(14,22,37,42,58,61,73,82,96,10); print_r(array_splice($array, array_search(58, $array ), 1));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 312 [2] => 1599 [3] => 3 ) Array ( [0] => 312 [2] => 1599 [3] => 3 ) Fatal error: Uncaught Error: Call to undefined function array_delete() in /in/rMmlB:5 Stack trace: #0 {main} thrown in /in/rMmlB on line 5
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:
52.48 ms | 401 KiB | 8 Q