File list Cool _ PHP Tutorial

Source: Internet
Author: User
The file list is cool. [Program language] PHP [source code source] px.sklar.com [function description] This script reads the file names from a specified directory, and then returns these file names to the array, it also includes file [program language] PHP [source code] http://px.sklar.com [Function description] This script reads the file names from a specified directory, returns these file names to the array, and includes the number of files. The source code is as follows: <? /* This script read the filenames from a specified directory and returns them in an array. The number of filenames is also returned. Copyleft (L) 1999 Eric Persson, eric@persson.tm, http://www.persson.tm/scripts/ */Function searchdir ($ basedir) {global $ filelisting, $ number; // defines the two variables as global so they can be accessed from outside the function unset ($ filelisting ); // kills $ filelisting in case it have been used earlier in the script unset ($ number); // same as abve $ handle = opendir ($ basedir ); while ($ file = readdir ($ handle) {if ($ file = ". "or $ file = ".. ") {} else {$ filelisting [] =" $ basedi R$ file ";};}; $ number = sizeof ($ filelisting); // gets the size of the array}; searchdir (". /"); // runs the function to search the current directory echo $ filelisting [1]; // echos the second value in the array echo $ number; // echos the size of the array?>

Scripting PHP [source code source] http://px.sklar.com [feature description] the script reads file names from a specified directory, and returns these file names to the array, including file...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.