0

我想从其他网站获取我的 php 页面中的文本数据,我可以提供输入 url 并将 post 参数传递给页面,但是当它返回结果时,我希望它进入我的页面并希望按照我的样式进行排列。

谁能帮我这个。

其他网站的输出页面不是.html格式。

输入网址

www.website.com/xxx/xxxx/xxx/history

传递一个POST参数

输出网址

www.website.com/xxx/xxxx/xxx/history/Print

====================================== UPDATE 1

实际上真正的网站是

http://14.139.122.69:8099/instinfo/smark/Grad/HistroyFind

当我输入注册号并提交时,它enroll使用 POST 方法传递一个参数,然后重定向到此页面

http://14.139.122.69:8099/instinfo/smark/GradHistroy/Print 

我想从此页面获取数据并在我的页面上打印。

4

1 回答 1

3

使用卷曲()

例如:

<?php
// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.website.com/xxx/xxxx/xxx/history");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);
?>

来自http://www.php.net/manual/en/function.curl-exec.php的示例代码

于 2013-06-26T19:18:01.127 回答