3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str1 = 'Apple\'s OS and the "Microsoft OS", ----- any text with quotes & symbols ---- '; $str2 = 'Sony\'s Laptop and the "Toshiba\'s"'; function implodeStrings(...$array) { $output = []; foreach($array as $str) { $output[] = $str; } return $output; } $array = implodeStrings($str1, $str2); var_dump($array);

preferences:
54.11 ms | 402 KiB | 5 Q