我想用HTML获取php文件的内容。我将它用作HTML电子邮件模板,但需要使用我的数据库中的动态数据填充。
我试过
file_get_contents('/emails/orderconfirm.php');
但所有这一切都是在服务器将服务器处理成HTML之前返回php代码。
我猜它真的很容易?任何想法都会非常感激。
由于
答案 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();
答案 2 :(得分:0)
您已关闭,请插入完整的网址
file_get_contents('http://example.com/emails/orderconfirm.php');
答案 3 :(得分:0)
尝试访问完整的http地址,例如:
file_get_contents('http://mydomain.com/emails/orderconfirm.php');