3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_diff_assoc_recursive($array1, $array2) { $difference=array(); foreach($array1 as $key => $value) { if( is_array($value) ) { if( !isset($array2[$key]) || !is_array($array2[$key]) ) { $difference[$key] = $value; } else { $new_diff = array_diff_assoc_recursive($value, $array2[$key]); if( !empty($new_diff) ) $difference[$key] = $new_diff; } } else if( !array_key_exists($key,$array2) || $array2[$key] !== $value ) { $difference[$key] = $value; } } return $difference; } $a1=array( 'a' => 0, 'b' => null, 'c' => array( 'd' => null ) ); $a2=array( 'a' => 0, 'b' => null ); var_dump( array_diff_assoc_recursive( $a1, $a2 ) ); ?>
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { ["c"]=> array(1) { ["d"]=> NULL } }

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