PHP Velho Oeste 2024

http_post_data

(PECL pecl_http >= 0.1.0)

http_post_dataPerform POST request with pre-encoded data

Description

string http_post_data ( string $url , string $data [, array $options [, array &$info ]] )

Performs an HTTP POST request on the supplied url.

See the full list of request options.

Parameters

url

URL

data

String containing the pre-encoded post data

options

request options

info

Request/response information

Return Values

Returns the HTTP response(s) as string on success, or FALSE on failure.

add a note add a note

User Contributed Notes 1 note

up
-1
Jonny L
9 years ago
Pecl HTTP doesn't seem to include this function, tested on latest ubuntu

1  execute
    sudo pecl install raphf propro pecl_http
2   create /etc/php5/mods-available/zhttp.ini
    extension=raphf.so
    extension=propro.so
    extension=http.so
3  execute
    sudo php5enmod zhttp
4 restart your web server


   
Running php -r 'http_post_data();' still gives me Call to undefined function http_post_data()
To Top