3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array ( array ( 'record_num' => 18152, 'title' => 'Title of post' ), array ( 'record_num' => 18150, 'title' => 'Title of post 2' ) , array ( 'record_num' => 18134, 'title' => 'Title of post 3' ) , array ( 'record_num' => 18134, 'title' => 'Title of post 3' ) ); print '<pre>'; $result = array_map("unserialize", array_unique(array_map("serialize", $array))); print_r($result); print '</pre>'; ?>
Output for git.master, git.master_jit, rfc.property-hooks
<pre>Array ( [0] => Array ( [record_num] => 18152 [title] => Title of post ) [1] => Array ( [record_num] => 18150 [title] => Title of post 2 ) [2] => Array ( [record_num] => 18134 [title] => Title of post 3 ) ) </pre>

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:
123.04 ms | 406 KiB | 5 Q