Hello i got strange error, normaly it's works on xampp, but when i setup it on host i'ts give me error that Only variables should be passed by reference, but i don't get it why, can you guy's help me please.
$it = new RecursiveDirectoryIterator("./extensions");
foreach(new RecursiveIteratorIterator($it) as $file) {
if (in_array(strtolower(array_pop(explode('.', $file))), array('php'))) {
include $file;
}
}
Thanks.