PHP Classes

File: examples/example_DirectoryBrowser.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/example_DirectoryBrowser.php   Download  
File: examples/example_DirectoryBrowser.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 1,341 bytes
 

Contents

Class file image Download
<?php
include_once '../A/Http/Request.php';
include_once
'../A/classes/DirectoryBrowser.php';

$basedir = $_SERVER['DOCUMENT_ROOT'];
$maxlength = 20;

$browser = new DirectoryBrowser(new A_Http_Request(), $basedir);

$browser->readDir();
$html = '';
while (
$entry = $browser->nextDir()) {
    if (
strlen($entry['filename']) > $maxlength) {
       
$entry['filename'] = substr($entry['filename'], 0, $maxlength);
    }
   
$html .= "<tr>\n";
   
$html .= '<td><a href="?' . $browser->buildParameters($entry['param']) . "\">{$entry['filename']}</a></td>\n";
   
$html .= "</tr>\n";
}
while (
$entry = $browser->nextFile()) {
    if (
strlen($entry['filename']) > $maxlength) {
       
$entry['filename'] = substr($entry['filename'], 0, $maxlength);
    }
   
$html .= "<tr>\n";
   
$html .= "<td>{$entry['filename']}</td>\n";
   
$html .= "</tr>\n";
}

?>

<doctype html public "-//w3c//dtd html 3.2//en">
<html>
<head>
<title>DirectoryBrowser Example</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080" alink="#ff0000">
Browsing: /<?php echo $browser->getRelativePath(); ?><br/>
<div style="width: 300px; height: 200px; border: solid 1px gray; overflow: auto; ">
<table border="0" rowspacing="0" colspacing="0">
<?php echo $html ?>
</table>
</div>
<br/>
<a href="./">Return to Examples</a>
</body>
</html>