在file_get_contents()中传递变量

时间:2017-07-22 13:21:10

标签: php

我想在file_get_contents()函数中传递一些变量。

  <?php
  extract($_POST);
  $html_content= file_get_contents("counties/indrsen/1.php");
  $tenant_html=$first_name.' '.$last_name."_$new.html";
  file_put_contents("3_day_notice_fad/$tenant_html",$html_content);
   ?>

1.php 是简单的php文件,保存在 counties / indrsen 。从上面的代码我调用1.php并希望将html文件保存在其他文件夹中,名称为 3_day_notice_fad 和变量。它在文件夹中成功保存,但是当我打开html文件时,它没有显示变量名。

我想在 file_put_contents(“3_day_notice_fad / $ tenant_html”,$ html_content)中传递变量 $ first_name $ last_name ;

1.php如下:

<p>To: Tenant's Name: <?php echo "$first_name.' '.$last_name"; ?> </p>

它显示html页面,如

To:租户名称:

但我希望用像

To:Tenant's Name:xyx jjj

1 个答案:

答案 0 :(得分:1)

感谢大家的回复。

我找到了答案
    ob_start();
    include('counties/indrsen/1.php');
    $html_content = ob_get_contents();
    ob_end_clean();

工作正常。