关闭
douniani679741 2016-10-10 05:10
浏览 15
已采纳

我可以命中一个端点并获取/回显<body>吗? [关闭]

I currently don't even know what exactly to search, don't know if that procedure has a name or something, that's why i decided to post a question.

For example, when i hit mysite/test.php i want that php to make a request to another .php on another server and get all the html contents of that page and echo it in test.php, is that even possible?

Let's suppose test.php is that php file which makes a request to take_me.php .

take_me.php could have just an echo or it could be a full content page.

Can i have the content of take_me.php shown in test.php?

  • 写回答

1条回答 默认 最新

  • doushang3352 2016-10-10 05:13
    关注

    You could use file_get_contents and echo to screen like below:

    $html = file_get_contents('http://www.google.com');
    
    if (isset($html)) {
    
        echo $html;
    
    }
    

    You may have issue with images rendering correctly etc... due to paths but it will work.

    http://php.net/manual/en/function.file-get-contents.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部