是否可以将简单html页面的内容分配给变量?
$mail = (require("mail.html"));
目的是在电子邮件中包含网页中的文本,而不是数据库中的文本。
答案 0 :(得分:4)
您可以使用file_get_contents
来阅读网页内容:
$mail = file_get_contents('mail.html');
答案 1 :(得分:0)
使用file_get_contents()
。您可以使用此函数将内容转换为变量
$mail = file_get_contents("mail.html");
http://php.net/manual/en/function.file-get-contents.php
或使用readfile(尽管不推荐)
ob_start();
readfile("text.txt");
$data = ob_get_clean();
答案 2 :(得分:0)
试试这个
ob_start();
require_once "mail.html";
$mail = ob_get_contents();
ob_end_clean();
答案 3 :(得分:0)
您的需求 file_get_contents() .try代码如下:
$mail = file_get_contents('mail.html');