I am trying to use scandir() to get the list of files for a directory.
<?php
function getFileList($directory) {
//Get the listing of the files/folders within the directory, place into an array.
$files = scandir($directory);
//Remove . and .. from the array.
unset($files[0]);
unset($files[1]);
//Reindex array.
$files = array_values($files);
return $files;
}
$directory = '//192.168.1.20/is/Vendors/DavLong/Krames/';
$files = getFileList($directory);
?>
Using this code works great when run from my local machine (192.168.1.165) but when run through the company intranet (192.168.1.35) I get the following warnings which keep my script from running:
Warning: scandir(//192.168.1.20/is/Vendors/DavLong/Krames/) [function.scandir]: failed to open dir: Invalid argument in C:\Inetpub\wwwroot\DocumentPrint\index.php on line 4
Warning: scandir() [function.scandir]: (errno 22): Invalid argument in C:\Inetpub\wwwroot\DocumentPrint\index.php on line 4
Warning: array_values() [function.array-values]: The argument should be an array in C:\Inetpub\wwwroot\DocumentPrint\index.php on line 9
I can the run dialog in windows and enter //192.168.1.20/is/Vendors/DavLong/Krames/ when using the 192.168.1.35 box and it does open Windows explorer at the proper location, so that machine is able to find the requested address.
Can someone help me with what I'm missing to get this working locally and via the intranet. Thank you in advance for any light that you may be able to shed on the situation.