Jump to content

Recommended Posts

I'm trying to list 3 files from a directory of 10 or 20 files.  I just want to display only three with a limit amount of characters.

 

 

This is the code I have so far but it list all the files.

 

 

<?php



echo "";




//The path to the style directory
$dirpath = "pdf/";
$dl = opendir($dirpath);
while (false !== ($file = readdir($dl))) {

//admit sub directories
if (!is_dir("$dirpath/$file")) {

echo "$file";
}
}
closedir($dl);
//Close Select

?>

 

 

I was thinking adding a while loop and putting

$file

in an array.  How can I display them in a list of 3 and with limit charactors.  I can do this in asp but I love php. :)

Link to comment
https://forums.phpfreaks.com/topic/121891-php-file-listing/
Share on other sites

look

<?php
$count = 0;
echo "";
//The path to the style directory
$dirpath = "pdf/";
$dl = opendir($dirpath);
while ($file = readdir($dl) and $count < 3) {
//admit sub directories
if (!is_dir("$dirpath/$file")) {
	if (strlen($file) < 7){
		echo "$file";
		$count++;
	}
}
}
closedir($dl);
//Close Select
?>

Link to comment
https://forums.phpfreaks.com/topic/121891-php-file-listing/#findComment-628940
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.