php + http_post_data

Ada*_*dam 3 php

有没有办法检查是否已安装?也许phpinfo()中有什么东西?

我正在接下面的电话,我根本没有得到任何答复.页面刚到达时就结束了.

        $postdata = array(
            'validation' => '1'
        );


        $response = http_post_data('../ajax/index_ajax_general.php', $postdata);
        print $response;
Run Code Online (Sandbox Code Playgroud)

dre*_*010 6

你可以用

if (extension_loaded('pecl_http') == false) {
    // do not have extension
}

// or

if (function_exists('http_post_data') == false) {
    // function not available
}
Run Code Online (Sandbox Code Playgroud)

鉴于该函数是PECL扩展,您可能会发现大多数PHP安装都没有这些函数可用.