PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php class Test { public function __construct(public int $id) {} } $initialErrors = [new Test(1), new Test(2), new Test(3)]; $finalErrors = [new Test(3), new Test(4), new Test(5)]; print_r(array_diff($initialErrors, $finalErrors)); print_r(array_diff($finalErrors, $initialErrors));
Show:  
Copy Clear