使用中央PHP包含文件

时间:2014-02-06 20:25:55

标签: php

使用PHP文件的正确方法是什么? includes.php用于不同的事情,然后将这些部分放到其他PHP文件中?

例如在includes.php

#footer <p>&copy; Copyright 2014 | <a href="legal.php">Legal</a></p>

然后在index.php

<?php include("includes.php#footer"); ?>

这种事情有可能吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试在includes.php

中存储数组
return array(
    'footer' => '<p>&copy; Copyright 2014 | <a href="legal.php">Legal</a></p>',
);

而不是index.php以这样的方式拉动它:

$templates = include("includes.php#footer");
$footer = $templates["footer"];