2009年10月9日 星期五

連到別的主機

在Linux下用/usr/bin/local/php 去執行 test.php,而 test.php 要連去另一個網頁,可用curl或file_get_contents()

不可用header("Location:http://abc/another_test.php");
因為header是給瀏覽器看的,/usr/bin/local/php並不是用瀏覽器去執行。

EX:
用curl:
//初始化 curl_init
$ch = curl_init('http://abc/another_test.php');
curl_exec($ch); //執行curl
curl_close($ch); //關閉curl

參考: http://tw.php.net/manual/en/function.curl-init.php

沒有留言: