file_get_contents 包含图像、脚本的完整代码

发布于 2024-12-21 00:52:00 字数 274 浏览 0 评论 0原文

有没有办法获得页面中使用的包含图像、脚本的完整源代码... file_get_contents 仅给出没有图像、脚本的元素...我需要的是当捕获一些 URL (file_get_contents / echo $URL ) 来渲染页面时就像 iframe 做的那样。 (带有图像、脚本等)这可能吗?有什么功能吗?

<?php

$URL='www.example.com';
$data= file_get_contents($url);
echo $data;

?>

Is there any way to get full source code with images,scripts who is used in page... file_get_contents give only elements without images,script... What I need is when catch some URL (file_get_contents / echo $URL ) to render page like iframe doing. (with images,scripts etc) Is this possible and is there any funcion for that...

<?php

$URL='www.example.com';
$data= file_get_contents($url);
echo $data;

?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最好是你 2024-12-28 00:52:00

解决方案很简单:

<?php

$url = 'http://www.example.com/';

$data = file_get_contents($url);

$data = '<head><base href='.$url.' target="_blank" /></head>'.$data;

echo $data;


?>

THE SOLUTION IS SO EASY:

<?php

$url = 'http://www.example.com/';

$data = file_get_contents($url);

$data = '<head><base href='.$url.' target="_blank" /></head>'.$data;

echo $data;


?>
情丝乱 2024-12-28 00:52:00

我认为不存在这样的内置函数。不过你可以写,应该不会太难。

I don't think there exists a built in function for that. But you can write it, it shouldn't be too difficult.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文