3v4l.org

run code in 300+ PHP versions simultaneously
<?php $schema = Array( Array("prestation_1" => 123, "prestataire_1" => 321, "prestation_2" => 456, "prestataire_2" => 654), Array("prestation_1" => 123, "prestataire_1" => 321, "prestation_2" => 456, "prestataire_2" => 654), Array("prestation_1" => 123, "prestataire_1" => 3241, "prestation_2" => 4956, "prestataire_2" => 654), Array("prestation_1" => 123, "prestataire_1" => 321, "prestation_2" => 456, "prestataire_2" => 654) ); function check( $array) { $array=array_values($array); $k=0; for($i=0;$i<count($array);$i++) { if(count($array)-1 > $i) { if($array[$i] == $array[$i+1]) $k=0; else $k=1; } } if($k == 0) return $array[0]; else return array(); } //print_r(check($schema)) ; $arr = array_unique($schema); print_r($arr);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Warning: Array to string conversion in /in/hXpPN on line 32 Warning: Array to string conversion in /in/hXpPN on line 32 Warning: Array to string conversion in /in/hXpPN on line 32 Warning: Array to string conversion in /in/hXpPN on line 32 Array ( [0] => Array ( [prestation_1] => 123 [prestataire_1] => 321 [prestation_2] => 456 [prestataire_2] => 654 ) )
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Array ( [0] => Array ( [prestation_1] => 123 [prestataire_1] => 321 [prestation_2] => 456 [prestataire_2] => 654 ) )
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.8, 5.2.10 - 5.2.17, 5.3.0 - 5.3.29, 7.3.32 - 7.3.33
Array ( [0] => Array ( [prestation_1] => 123 [prestataire_1] => 321 [prestation_2] => 456 [prestataire_2] => 654 ) )
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Array ( [0] => Array ( [prestation_1] => 123 [prestataire_1] => 321 [prestation_2] => 456 [prestataire_2] => 654 ) )
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Notice: Array to string conversion in /in/hXpPN on line 32 Array ( [0] => Array ( [prestation_1] => 123 [prestataire_1] => 321 [prestation_2] => 456 [prestataire_2] => 654 ) )
Output for 5.2.9
Array ( [0] => Array ( [prestation_1] => 123 [prestataire_1] => 321 [prestation_2] => 456 [prestataire_2] => 654 ) [2] => Array ( [prestation_1] => 123 [prestataire_1] => 3241 [prestation_2] => 4956 [prestataire_2] => 654 ) )

preferences:
316.78 ms | 401 KiB | 453 Q