gpt4 book ai didi

php - 仅使用 PHP 从 PHP 文件中获取 HTML 代码?

转载 作者:行者123 更新时间:2023-12-04 10:46:56 28 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





file_get_contents takes the php content! and i need the source code in html

(1 个回答)



file_get_contents returns PHP code

(3 个回答)


去年关闭。




我有一个 PHP 文件,我只需要获取用于发送电子邮件的 HTML 代码。我在哪里使用 file_get_contents(email.php);它还可以获取 php 代码,有什么办法可以只获取 HTML 吗?

<?php 
$pid=20;
$cid=30;
?>

<!DOCTYPE html>
<html>
<head>
<title>Promotion Email</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><?php $pid + $cid ?></p>
</body>

我只需要 HTML 我试图得到这样的:
$body = file_get_contents("promotion-mail-contents.php");

最佳答案

是的,就像从外部调用它一样。

$body = file_get_contents("http://www.yourdomain.com/promotion-mail-contents.php");

关于php - 仅使用 PHP 从 PHP 文件中获取 HTML 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59661668/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com