cUrl在网页上获得POST答案的替代方案

时间:2012-07-13 10:29:45

标签: php javascript html curl

我希望提交特定表单的结果网页。此表单使用POST,因此我目前的目标是能够将POST数据发送到URL,并将结果的HTML内容转换为变量。

我的问题是我不能使用cUrl(未启用),这就是为什么我要求你知道是否可以使用其他解决方案。

提前致谢

2 个答案:

答案 0 :(得分:4)

使用fsockopen看到这个: http://www.jonasjohn.de/snippets/php/post-request.htm

Fsockopen在php标准库中,因此所有php fron版本4都有它:)

答案 1 :(得分:0)

尝试file_get_contents()和流

$opts = array(  'http'=>array('method'=>"POST", 'content' => http_build_query(array('status' => $message)),));

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$file = file_get_contents('http://www.example.com/', false, $context);