Very good directory navigation file code

Source: Internet
Author: User
Tags php file
This code is short, but very practical, it can easily create the directory you specify the name of the specified suffix file hyperlink, and can be set, will not be the specified directory first navigation.
<?php

function NavBar () {
$files = Dir ("."); Specify directory
$pipe = "|"; Pipe character
Search for all files in the directory through the following loop
while ($current = $files->read ()) {
Ignor all files is not. htm type.
if (Strpos ($current, "PHP")!= FALSE)//Set suffix to php file will be navigated
Ignore yourself (e.g. index.html)
{if (Strpos ($current, "ndex") = = FALSE)
{
Print "<a href= '";
Print $current;
Print "' >";
Print $current;
print "</a>";
Print $pipe;
};
};
};
};
NavBar ()//Call function
?>


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.