Hey, I am running this code on our production server:
<?php
$f = scandir("/home");
foreach($f as $val){
echo $val;
echo "\n";
}
?>
and I am getting this warning:
PHP Warning: Module 'soap' already loaded in Unknown on line 0
The directory lists, but I don't want to see this error each time.
Any ideas?
Thanks
<?php
$f = scandir("/home");
foreach($f as $val){
echo $val;
echo "\n";
}
?>
and I am getting this warning:
PHP Warning: Module 'soap' already loaded in Unknown on line 0
The directory lists, but I don't want to see this error each time.
Any ideas?
Thanks
Comment