在php中循环包含文件

时间:2013-02-01 04:58:21

标签: php

我在这里有这段代码:

<?php
include('a.php');
include('b.php');
include('c.php');
include('d.php');
include('e.php');
?>

我希望循环运行此文件并执行一次这些文件。我怎么能这样做?我是php的新手。

2 个答案:

答案 0 :(得分:2)

你可以这样做......

<pre>
<?php 
set_time_limit (0);
$files = array('a', 'b', 'c', 'd', 'e',);
foreach($files as $f){
    include_once $f.".php";
    echo "finished file $f\n";
    flush();
}
?>
</pre>

答案 1 :(得分:0)

你可以这样做:

class Loader
{
   protected $files = array();

   public function __construct($files)
   {
       $this->files = $files;
   }
   public function Init()
   {
      foreach($this->files as $file)
      {
          if(file_exists($file)) 
          {
             require_once($file);
          }
      }
}

$loader = new Loader(array("a.php", "b.php","c.php","d.php"));

$loader->init();

您的文件位于何处(假设您的问题中列出的所有文件均为index.php)。

您的require文件中需要includeLoader.php此文件(index.php)。例如:

的index.php

<?php
 // file index.php
  require_once('Loader.php');

  $loader = new Loader(array("a.php", "b.php","c.php","d.php"));

  $loader->init();

?>

通过此设置,您的index.php文件将能够创建对象,并且您的代码将更加有序和模块化。