使用PHP文件的正确方法是什么? includes.php
用于不同的事情,然后将这些部分放到其他PHP文件中?
例如在includes.php
:
#footer <p>© Copyright 2014 | <a href="legal.php">Legal</a></p>
然后在index.php
:
<?php include("includes.php#footer"); ?>
这种事情有可能吗?
答案 0 :(得分:0)
您可以尝试在includes.php
:
return array(
'footer' => '<p>© Copyright 2014 | <a href="legal.php">Legal</a></p>',
);
而不是index.php
以这样的方式拉动它:
$templates = include("includes.php#footer");
$footer = $templates["footer"];