如何远程调用php文件?

时间:2015-10-20 02:33:51

标签: php xmlhttprequest

我可以访问网址" http://localhost:8080/test.php?dbname=zhenhuang"但是以下代码不起作用。我想知道如何在javascript中调用php文件。

var http=new XMLHttpRequest();
    http.onreadystatechange=function(){
        console.log(http.readyState);enter code here
        if(http.readyState === 4){
            /*code*/
        }
    };
    http.open("GET","http://localhost:8080/test.php?dbname=zhenhuang",true);
    http.send(null);
<pre>

1 个答案:

答案 0 :(得分:0)

如果您想获取该页面的内容,您可以:

 $result = file_get_contents("http://localhost:8080/test.php?dbname=zhenhuang");

了解更多here

我希望它有所帮助! :)