有没有办法检查是否已安装?
也许PHPinfo()中有什么东西?
我正在接下面的电话,我根本没有得到任何答复.页面刚到达时就结束了.
$postdata = array(
'validation' => '1'
);
$response = http_post_data('../ajax/index_ajax_general.PHP', $postdata);
print $response;
解决方法:
你可以用
if (extension_loaded('pecl_http') == false) {
// do not have extension
}
// or
if (function_exists('http_post_data') == false) {
// function not available
}