PHP Velho Oeste 2024

http_post_data

(PECL pecl_http >= 0.1.0)

http_post_dataPerform POST request with pre-encoded data

Descrierea

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

Performs an HTTP POST request on the supplied url.

Vedeți lista întreagă de opțiunile interpelării.

Parametri

url

URL

data

String containing the pre-encoded post data

options

opțiunile interpelării

info

Informația interpelării/răspunsului

Valorile întoarse

Întoarce răspunsul(urile) HTTP ca string în caz de succes, sau FALSE în caz de eșec.

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