file_get_contents 包含图像、脚本的完整代码
有没有办法获得页面中使用的包含图像、脚本的完整源代码... 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决方案很简单:
THE SOLUTION IS SO EASY:
我认为不存在这样的内置函数。不过你可以写,应该不会太难。
I don't think there exists a built in function for that. But you can write it, it shouldn't be too difficult.