我一直在与这个问题作斗争很长一段时间。我有一个使用curl发送/接收数据/信息的代码段。我正在与Codeigniter合作。 问题是它在我的localhost上工作正常,但是当我上传到我的cPanel时,curl段不会返回任何值。 我的代码:
<?php
$url = "http://remote-domain.com/";
$fields = array(
'username' => $username,
'password' => $password,
'source' => $sender,
'message' => $message);
$this->load->library('curl');
return $result = $this->curl->simple_get($url, $fields);
?>
它在localhost上运行正常,但在上传到我的服务器时不起作用。 请帮忙吗?