PHP Velho Oeste 2024

http_post_data

(PECL pecl_http >= 0.1.0)

http_post_dataPerform POST request with pre-encoded data

설명

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

Performs an HTTP POST request on the supplied url.

요청 옵션들의 전체 목록을 참고하십시오.

인수

url

URL

data

String containing the pre-encoded post data

options

요청 옵션들

info

요청/응답 정보

반환값

성공시 HTTP 응답을 문자열로, 실패시 FALSE를 반환합니다.

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