我想用HTML获取PHP文件的内容.我将它用作HTML电子邮件模板,但需要使用我的数据库中的动态数据填充它.
我试过了
file_get_contents('/emails/orderconfirm.PHP');
但所有这一切都是在服务器将服务器处理成HTML之前返回PHP代码.
我猜它真的很容易?任何想法将不胜感激.
谢谢
最佳答案
要在您的电子邮件/ orderconfirm.PHP中执行特定代码,您需要include其内容.
原文链接:https://www.f2er.com/html/426221.html这样,您需要使用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;