/[corp_html]/inc/find_html_file.inc
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /inc/find_html_file.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Thu Sep 20 09:50:43 2001 UTC (22 years, 8 months ago) by dpavlin
Branch: MAIN
Changes since 1.3: +1 -1 lines
if no dir, use just file

1 <?
2
3 function find_html_file($dir,$file) {
4 if (substr($dir,0,1) == "/" && $dir !="") {
5 $file="$dir/$file";
6 } else {
7 $file="./$dir/$file";
8 }
9 if (file_exists("$file") && is_file("$file")) { return "$file"; }
10 if (file_exists("$file.htm") && is_file("$file.htm")) { return "$file.htm"; }
11 if (file_exists("$file.html") && is_file("$file.html")) { return "$file.html"; }
12 return 0;
13 }
14
15 ?>

  ViewVC Help
Powered by ViewVC 1.1.26