dragonsun00000 2017-06-19 02:07
浏览 28
已采纳

通过php发布Curl请求

I wanted to send a post request to pilosa database. The request is like this -

curl localhost:10101/index/user/query -X POST -d 'Bitmap(frame="language", id=5)'.

How can i send the following request through php ?

Link for referrence : https://www.pilosa.com/docs/api-reference/

  • 写回答

1条回答 默认 最新

  • duannuo7878 2017-06-19 07:45
    关注

    If you don't have the php curl library available to you, you can query Pilosa with php's file_get_contents which is part of core php. The following php script should perform your example query:

    <?php
    
    $url = 'http://localhost:10101/index/user/query';
    $data = 'Bitmap(frame="language", id=5)';
    
    $options = array(
        'http' => array(
            'method'  => 'POST',
            'content' => $data
        )
    );
    $context  = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
    
    var_dump($result);
    
    ?>
    

    The Pilosa HTTP API documentation can be found at: https://www.pilosa.com/docs/api-reference/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥30 Metashape软件中如何将建模后的图像中的植被与庄稼点云删除
  • ¥20 机械振动学课后习题求解答
  • ¥15 IEC61850 客户端和服务端的通讯机制
  • ¥15 MAX98357a(关键词-播放音频)
  • ¥15 Linux误删文件,请求帮助
  • ¥15 IBMP550小型机使用串口登录操作系统
  • ¥15 关于#python#的问题:现已知七自由度机器人的DH参数,利用DH参数求解机器人的逆运动学解目前使用的PSO算法
  • ¥15 发那科机器人与设备通讯配置
  • ¥15 Linux环境下openssl报错
  • ¥15 我在使用VS编译并执行之后,但是exe程序会报“无法定位程序输入点_kmpc_end_masked于动态链接库exe上“,请问这个问题有什么解决办法吗
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部