将外部 URL 放入我的页面

发布于 2024-12-20 22:56:29 字数 639 浏览 0 评论 0原文

可能的重复:
从外部页面提取元素的内容

有没有办法将外部页面放入我的页面但不能使用 iframe。目前我使用:

<?php

$homepage = file_get_contents('http://www.google.com/');
echo $homepage;

?>

但这不是真正优雅的解决方案。有一些优雅的解决方案吗?也许使用 jquery、java 脚本、php ...或其他一些...???我需要的是显示外部页面,但可以看到该外部页面的源代码...

更新:浏览器解决方案中的某些浏览器或类似的东西???

Possible Duplicate:
Extracting the content of an element from an external page

Is there any way to put external page into my page but not with iframe. Currently I using:

<?php

$homepage = file_get_contents('http://www.google.com/');
echo $homepage;

?>

but this is not really elegant solution. Is there some elegant solution for this? maybe with jquery, java script, php ... or some other ... ??? What I need is to show external page but to can see the source code od that external page...

UPDATE: some browser in browser solution or something similar???

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

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

发布评论

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

评论(1

活雷疯 2024-12-27 22:56:29

如果您想在您的页面上显示外部页面的源代码:

<?php

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

?>
<html>
  <head>
    <title>HTML source of <?php echo $url; ?></title>
  </head>
  <body>
    <pre>
<?php echo htmlspecialchars(file_get_contents($url)); ?>
    </pre>
  </body>
</html>

If you want to show the source code of an external page on your page:

<?php

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

?>
<html>
  <head>
    <title>HTML source of <?php echo $url; ?></title>
  </head>
  <body>
    <pre>
<?php echo htmlspecialchars(file_get_contents($url)); ?>
    </pre>
  </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文