14
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

curl_execでAPI叩いても1しか返してくれなくて辛い

Posted at

結論を言うとCURLOPT_RETURNTRANSFERを指定してなかったからですね。
CURLOPT_RETURNTRANSFERにTRUEを指定しないと成功時にTRUE、失敗時にFALSEをかえすようです。

デバックの時には返り値を出力して確認していたので、TRUEやFALSEではなく数値で出力されていたのが混乱を招いていました。
そのため下記のように指定する必要があります。

curl_exec
$ch = curl_init($request);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec ($ch);

こんな事で小一時間も悩む人がこの世から消えますように。

14
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?