Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php function custom_function(string $str1, string $str2) : array { $arr1 = explode(',', $str1); $arr2 = explode(',', $str2); return array_combine(array_diff($arr1, $arr2), array_diff($arr2, $arr1)); } $str1 = "no,yes"; $str2 = "no,haha"; $diff = custom_function($str1, $str2); var_dump($diff);
Copy Clear