2011-07-30 125 views
-1

我遇到了一個問題,我爲Swift OS開發Web應用程序,並且文檔告訴我要對超鏈接進行API調用,我得到了一個將所有數據作爲GET發送到文件的表單,但是我想包含另一個PHP執行查詢?

有什麼辦法,我可以「訪問」一個網頁,沒有我真的去那裏?

感謝

+2

...什麼?這完全不清楚。 –

+0

對不起,但這是非常不連貫的,沒有辦法知道你甚至在這裏問什麼。 – GordonM

+1

這個問題很可能是問到flatzo的答案究竟是什麼......我希望她會重寫這個問題...... – Smar

回答

0

你可以使用PHP的pecl_http extension,然後發送一個HTTP請求到所需的網站。

$request = new HttpRequest('http://example.com/', HttpRequest::METH_GET); 

$r->addQueryData(array('getParam1' => 'value1', 'getParam2' => 'value2')); 
try { 
    $request->send(); 
    if ($request->getResponseCode() == 200) { 
     /* Do whathever you need from the response of the server with 
     *   $request->getResponseBody() 
     * 
     * You will have been "visiting" the website without being there 
     */ 
    } 
} catch (HttpException $ex) { 
    echo $ex; 
} 

來源:http://php.net/manual/en/function.httprequest-send.php