dongliang2005 2017-06-06 22:11
浏览 47
已采纳

如何在magento 1.9模块中使用cURL

I've developed a module, at the moment only some function and get/post from to Database , the front I have it already done. I want to add a class (cURL) to call 3rd party api, but I don't know how can I to implement that. It should be in controllers(IndexController?) or Model folder as new file? and if I have to add some details in config.xml?

  • 写回答

2条回答 默认 最新

  • doudao3170 2017-06-07 07:30
    关注

    There is no restriction to use the curl in a particular file. It depends on your module functionality and parameters. The most effective effort to use curl in indexcontroller. Use can create a function and initiate them.

    Example like:

      <?php
    
        $curl = new Varien_Http_Adapter_Curl();
        $curl->setConfig(array(
               'timeout'   => 15    //Timeout in no of seconds
        ));
        $feed_url = "http://feeds.feedburner.com/magento";
        $curl->write(Zend_Http_Client::GET, $feed_url, '1.0');
        $data = $curl->read();
        if ($data === false) {
           return false;
        }
        $data = preg_split('/^r?$/m', $data, 2);
        $data = trim($data[1]);
        $curl->close();
    
        try {
          $xml  = new SimpleXMLElement($data);
         //Parse the XML FEED and output the data
        }
        catch (Exception $e) {
           echo $e->getMessage();
        }
    
        ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型