gpt4 book ai didi

php - 借助php在iframe中的网页源代码

转载 作者:行者123 更新时间:2023-11-28 04:23:39 25 4
gpt4 key购买 nike

我想在 iframe 标记中显示 url 的源代码。怎么做 ?例如,我有这段代码。

<html>
<head>
<title></title>
</head>
<body>
<div>
<?php $content = @file_get_contents("http://stackoverflow.com"); ?>
</div>
</body>

如何在 iframe 中显示 $content ?

最佳答案

使用此代码:编辑:iframe 版本..:

将此源​​保存为getsource.php

<html>
<head>
<title></title>
</head>
<body>
<div>
<pre>
<?= htmlentities( @file_get_contents($_GET['url'])); ?>
</pre>
</div>
</body>

然后在不同页面的某处使用您的 iframe,并使用 url 变量将 src 添加到 getsource.php:

<iframe src="getsource.php?url=http://stackoverflow.com"></iframe>

这可能不安全,但我认为 htmlentities 可以防止 xss 攻击。

关于php - 借助php在iframe中的网页源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11273722/

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