如何仅使用PHP包含文件的一部分

时间:2014-05-07 06:05:10

标签: php html

有没有办法只使用PHP的include函数包含部分文件? 在文档中说是正常的html,我想要的唯一部分是那些标有div id =" content"我将如何仅包含"内容"部?

1 个答案:

答案 0 :(得分:0)

这样的事情是不可能的,我建议你使用模板文件

with with with templates

html.tpl.php:

<html>
   <head>
      <?php echo $html_headers; ?>
   </head>
   <body>
   <?php echo print_content_div(); ?>
   </body>
</html>

my_php_page.php:

 $html_headers='your headers';
 include 'content_div.php';
 include 'html.tpl.php';

content_div.php:

<?php
function print_content_div(){
   echo "<div id='content'>Your content here</div>";
}

这样你可以在不重复代码的情况下编写大页面