1

我有一个驻留在单个文件夹中的 php 脚本我想在每个文件夹中运行相同的脚本而不手动上传每个文件中的 php 文件

例如我有 mysite.com/folder/script.php

和文件夹有不同的子文件夹

所以我想创建一个 php 文件,它将在每个文件夹/子文件夹中执行这个 script.php,而无需在每个文件夹中手动上传 script.php

有办法吗?

更新php代码

$path = array("./files/","./images/");
$path2=  array("http://".$_SERVER['SERVER_NAME'].dirname($_SERVER["PHP_SELF"])."/files/","http://".$ _SERVER['SERVER_NAME'].dirname($_SERVER["PHP_SELF"])."/images/");
$start="";
$Fnm = "./include.php";
$inF = fopen($Fnm,"w");
fwrite($inF,$start."\n");

$folder = opendir($path[0]);
while( $file = readdir($folder) ) {
       if (($file != '.')&&($file != '..')&&($file != 'index.htm')) {
            $folder2 = opendir($path[1]);
            $imagename ='';
            while( $file2 = readdir($folder2) ) {
                if (substr($file2,0,strpos($file2,'.')) == substr($file,0,strpos($file,'.'))){
                    $imagename = $file2;
                }
            }
            closedir($folder2);
        $result="{\nlevels: [\n{ file: \"$path2[0]$file\" }\n],\nimage: \"$path2[1]$imagename\",\ntitle: \"$file\"\n},\n";
        fwrite($inF,$result);
       }
}
fwrite($inF,"");
closedir($folder);

fclose($inF);
4

2 回答 2

4

假设您使用的是 Apache,您可以通过创建如下所示的文件来使用mod_rewrite :htaccess

RewriteEngine on
RewriteBase /folder/
RewriteRule  ^.+/script.php$ script.php

并将其上传到您的服务器。这将打开RewriteEngine,将基本目录设置为您选择的文件夹,然后无论何时script.php在子目录中请求它都会返回/folder/script.php

于 2012-08-19T09:53:50.017 回答
2

在您的子文件夹页面上,包含以下代码:

require_once dirname(__FILE__) . "/folder/script.php";

你是这个意思吗?

于 2012-08-19T09:50:46.227 回答