Tagged Questions
3
votes
3answers
135 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
400 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
652 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
534 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
799 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
111 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
2answers
115 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
3answers
34 views
Search and list specific directories only?
I want to search and list specific folders only and no matter how deep these folders are kept.
For instance, below is how I structure them,
local/
app/
master/
models/
...
0
votes
2answers
48 views
Sort alphabetically with opendir()
I'm quite new to PHP so I'm still learning the very basics, however I'm trying to create an image gallery.
After countless Google searches later, I found a PHP script that does what I want it to do, ...
0
votes
2answers
50 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
51 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
104 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
140 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
0answers
94 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
235 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
122 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
462 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
386 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
523 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
349 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