gpt4 book ai didi

php + http_post_data

转载 作者:可可西里 更新时间:2023-11-01 00:35:38 27 4
gpt4 key购买 nike

有没有办法检查是否已安装?也许在 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
}

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

关于php + http_post_data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8640241/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com