我在这里有这段代码:
<?php
include('a.php');
include('b.php');
include('c.php');
include('d.php');
include('e.php');
?>
我希望循环运行此文件并执行一次这些文件。我怎么能这样做?我是php的新手。
答案 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
文件中需要include
或Loader.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
文件将能够创建对象,并且您的代码将更加有序和模块化。