Read echo'ed output from another PHP file

前端 未结 2 606
独厮守ぢ
独厮守ぢ 2020-12-09 04:55

I want 1 PHP file to \"run\" (include?) another PHP file on the same server, and access its echo\'ed output as a string.

How do i do this in PHP? Any inbuilt functio

2条回答
  •  悲哀的现实
    2020-12-09 05:19

    You can't include a PHP script that is on an external website/server into your local script - unless you enable allow_url_include on your php.ini (if you have access to it)

    Instead, you can let that website/server render the page and get the resulting HTML output on your local script by doing this:

    $result = file_get_contents('http://127.0.0.1/myfile.php');
    

提交回复
热议问题