如何在PHP中从Mashape进行卷曲



我有下面的curl代码来检查一个数字是否被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

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

<?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));
?>

希望这足以让你开始
在实践中,我想你将不得不让一个变量获得密钥和电话号码,但这是微不足道的。

相关内容

  • 没有找到相关文章

最新更新