Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
134 views

Sending Variables for PHP FileSystem Functions with Form Submission

I'm trying to find a secure way to do the following: Users enters value into html form. Form is submitted. PHP uses submitted value as the argument for the "scandir" function. My theory is include ...
2
votes
3answers
337 views

PHP most efficient way to list the files in a very large directory [closed]

Possible Duplicates: Get the Files inside a directory PHP: scandir() is too slow I have a directory with tens of thousands of files in it and I want to display a list of these files on a ...
2
votes
2answers
569 views

PHP: scandir() is too slow

I have to make a function that lists all subfolders into a folder. I have a no-file filter, but the function uses scandir() for listing. That makes the application very slow. Is there an alternative ...
2
votes
2answers
504 views

PHP scandir results: sort by folder-file, then alphabetically

PHP manual for scandir: By default, the sorted order is alphabetical in ascending order. I'm building a file browser (in Windows), so I want the addresses to be returned sorted by folder/file, then ...
2
votes
3answers
710 views

PHP: readdir to scandir?

i wonder how i can transform exactly the following piece of code to scandir instead of readdir? $path = 'files'; //shuffle files $count = 0; if ($handle = opendir($path)) { $retval = array(); ...
2
votes
3answers
1k views

use php scandir($dir) and get only images!

Is there any way to get only images (jpeg,png&gif) while using: $dir = '/tmp'; $files1 = scandir($dir);
1
vote
3answers
75 views

Exclude Hidden Files from Scandir PHP

I have now the following code: $files = scandir($imagepath); But when i display the images i also get hidden files. I want to excluse those hidden files. Thanks in advance.
1
vote
4answers
186 views

scandir match function arguments

I am using scandir to match certain files from a dir. The match function takes const struct dirent *dp argument. But I also need to pass another argument with it. When I try to do that, compiles ...
1
vote
2answers
111 views

output files from a second directory in same php function

I have the following code to output images from directory im/, how can I tweak this to also output images from another diectory called out/ (for example)? As to echo another img tag under the current ...
0
votes
2answers
49 views

Covert ../ Into Real Directories PHP

I am making a small file browsing script using PHP and Javascript and I have come into a small issue. The current directory is stored as GET in the url as index.php?dir=/projects/jphp when it is in ...
0
votes
0answers
46 views

Help with identifying particular file in PHP using scandir and readdir

I have a folder that looks like this: RootFolder Comp1 Comp1_01042011.html Comp1_03062011.html Comp2 Comp1_01042011.html Comp1_03062011.html Each of the HTML files are in the ...
0
votes
2answers
86 views

is_dir() fails while scanning a directory in php

I'm trying to build a <ul> list with a <li> for each directory in a main folder. here's my code : <?php $dir = opendir(getEnv("DOCUMENT_ROOT") . "/folder"); while(($file = ...
0
votes
1answer
120 views

Php scandir() problems

I was wondering, my Scandir() function works on a php $_GET variable, so the variable returns the folder, but I'm having a problem because I'm not sure how to echo out an error if there is a problem ...
0
votes
1answer
58 views

PHP's scandir with ajax call

I have some content loaded via ajax that includes the scandir() function. On local and on my server it works perfectly, however on my client's server it didn't work because they run PHP4 (scandir() ...
0
votes
0answers
86 views

Php scandir with jquery.jvert-tabs plugin

I have the jQuery jvert-tabs plugin enabled and within it I have a different CSS-only slideshow for each tab. It's a monstrous quantity of pictures for each tab so I'm trying to use PHP's scandir to ...
0
votes
2answers
213 views

Is it possible to use relative paths with PHP scandir and does authentication affect scandir?

I have an authenticated directory in my site that has a bunch of directories of photos in it. If you log in you can access these photos. /admin/galleries/ I want to build another page outside of ...
0
votes
1answer
120 views

Scandir Never Returns

I am developing using a Windows 7 machine with the local server being UniServer. I have some PHP code to include all php files in a directory. # Include all library classes. $library_files = ...
0
votes
4answers
436 views

using PHP.scandir() to scan files and then require_once them

hi again every one this is my third question so far on stackoverflow :D i am defining files and their location on my first_run.php files, the files that i define here is those files containing ...
0
votes
2answers
377 views

PHP (images folder) image Listing in Alphabetical Order?

I'm having problems with a PHP script trying to list images alphabetically. I need this urgently and I have not much knowledge of PHP. I was trying to use scandir() but I'm not succeeding. Thanks for ...
0
votes
2answers
511 views

Encoding problem with preg_replace() and scandir()

On OS-X (PHP5.2.11) I have a file: siƫsta.doc (and thousand other with Unicode filenames) and I want to convert the file names to a web-consumable format (a-zA-Z0-9.). If I hardcode the file name ...
0
votes
2answers
343 views

PHP scandir strange behaviour

ok, so what i'm trying to do is to scan the "previous" folder. $scanned = scandir(".."); foreach($scanned as $file){ if(is_file($file)){ print $file."<br />"; } } even though in my ...
0
votes
4answers
1k views

How do you get a directory listing sorted by creation date in PHP?

I have to list directories by using scandir() function but result array should be sorted according to date and time of directory created. Regards Deepak