如何在PHP中使用Mashape卷曲

时间:2014-10-24 00:30:52

标签: php curl mashape

我有以下卷曲代码来检查数字是否已激活DND。但我不知道如何使用它。我怎样才能在php中实现这个以获得json输出。

CURL代码:

curl --get --include "https://dndcheck.p.mashape.com/index.php?mobilenos=9999999999%2C8888888888" \
  -H "X-Mashape-Key: g5Svg3wHuomshHIyjncC0hetIUVXp1h7E0LjsnJmorZlVxUcQV"

链接到api和文档: https://www.mashape.com/blaazetech/dnd-check

1 个答案:

答案 0 :(得分:2)

试试这个并告诉我它是如何为你工作的:

<?php
// Create a stream
$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"X-Mashape-Key: g5Svg3wHuomshHIyjncC0hetIUVXp1h7E0LjsnJmorZlVxUcQV"               
  )
);

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$res = file_get_contents('https://dndcheck.p.mashape.com/index.php?mobilenos=9999999999%2C8888888888', false, $context);
print_r(json_decode($res, true));
?>

希望这足以让你开始。
在实践中,我猜你必须通过变量获得密钥和电话号码,但这是微不足道的。