<?php // Error! class Test { public function foo() { $file = '/tmp/bar'; touch($file); $files = [ realpath($file) ]; var_dump($files); var_dump(array_unique($files)); return array_unique($files); } } var_dump((new Test())->foo());
You have javascript disabled. You will not be able to edit any code.