在处理完文件后,从php文件中获取HTML内容

时间:2012-12-19 14:44:37

标签: php html

我想用HTML获取php文件的内容。我将它用作HTML电子邮件模板,但需要使用我的数据库中的动态数据填充。

我试过

file_get_contents('/emails/orderconfirm.php'); 

但所有这一切都是在服务器将服务器处理成HTML之前返回php代码。

我猜它真的很容易?任何想法都会非常感激。

由于

4 个答案:

答案 0 :(得分:8)

要在emails/orderconfirm.php中执行特定代码,您需要include其内容。

包含的内容将被编译和呈现 但是,只要您echo

,就需要获取内容

这样,您需要使用ob_start()库。

以下是一个使用示例:

ob_start(); //Init the output buffering
include('emails/orderconfirm.php'); //Include (and compiles) the given file
$emailContent = ob_get_clean(); //Get the buffer and erase it

已编译的内容现在存储在您的$emailContent变量中,您可以按照自己的方式使用它。

$email->body = $emailContent;

答案 1 :(得分:4)

ob_start();
require 'emails/orderconfirm.php';
$email = ob_get_clean();

http://php.net/ob_start

答案 2 :(得分:0)

您已关闭,请插入完整的网址

file_get_contents('http://example.com/emails/orderconfirm.php'); 

答案 3 :(得分:0)

尝试访问完整的http地址,例如:

file_get_contents('http://mydomain.com/emails/orderconfirm.php');