在PHP变量中的html中使用php include函数

时间:2014-10-24 10:23:18

标签: php html include

我正在做这样的事情

   $some_var='<!DOCTYPE html>
              <head>
              <title>questions '.$suto.'</title>
              <meta charset="utf-8" />
              <meta name="description" content="question need to'. $suto.'">
              '. include ("header.php") .'
              <body>       

下面有更多代码正在发挥作用,这就是为什么不在这里发布。

一切都可以使用包含功能。

2 个答案:

答案 0 :(得分:4)

而不是include(),您可以使用file_get_contents()之类的,

$some_var='<!DOCTYPE html>
    <head>
            <title>questions '.$suto.'</title>
             <meta charset="utf-8" />
             <meta name="description" content="question need to'.$suto.'">'.file_get_contents("header.php").'
    <body>   

file_get_contents()是一个PHP函数,它是将文件内容读入字符串的首选方法之一。

include()将解析包含文件中的PHP代码。 file_get_contents()将返回文件的内容。在这里,您将内容存储到字符串。所以file_get_contents是正确的选择。

答案 1 :(得分:1)

您可以使用file-get-contents函数(http://php.net/manual/en/function.file-get-contents.php

$some_var='<!DOCTYPE html>
           <head>
           <title>questions '.$suto.'</title>
           <meta charset="utf-8" />
           <meta name="description" content="question need to'. $suto.'">
           '. file-get-contents ("header.php") .'

           <body>';