Azzu 2014-09-24 09:46 采纳率: 0%
浏览 1897

Accessing Swift Code IFSC Codes API, Php Script Error

I am trying to access swift codes, ifsc codes, micr codes data from this free API, they have given this sample php code to access the data in JSON format.

unction get_ifsc_code($url, $curl = true) { $responseString = ''; if (!$curl) { /* * if !$curl, use 'file_get_contents' method * to get response string / $responseString = file_get_contents($url); } else { / * if $curl, use 'curl' method * to get response string */

// Initializing curl
$ch = curl_init( $url );

// Configuring curl options
$options = array(
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HTTPHEADER => array('Content-type: application/json') ,
    //Could be xml
);

// Setting curl options
curl_setopt_array( $ch, $options );

// Getting JSON encoded string
$responseString =  curl_exec($ch);

}
return $responseString;
}
Refer this github code
Sample code from the official site

Please help me in finding the error. I am not getting where it's going wrong.

  • 写回答

1条回答 默认 最新

  • 傲雪星枫 2014-12-18 08:50
    关注

    what is the url?

    评论

报告相同问题?

悬赏问题

  • ¥30 vmware exsi重置后的密码
  • ¥15 易盾点选的cb参数怎么解啊
  • ¥15 MATLAB运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真
  • ¥15 mars2d在vue3中的引入问题
  • ¥50 h5唤醒支付宝并跳转至向小荷包转账界面