如何从PHP中的其他页面获取文本

时间:2013-06-26 19:08:34

标签: php

我想从其他网站获取我的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

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

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

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

1 个答案:

答案 0 :(得分:3)

使用curl()

例如:

<?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

的示例代码