首页 >

使用PHP多维数组重组方法,兼容API接口

后端开发|php教程使用PHP多维数组重组方法,兼容API接口
多维数组
后端开发-php教程
在平时的php开发中,我们通常会调用第三方的API来满足我们的业务需求,但是会遇到返回数据格式不统一的情况,特别是第三方api接口返回数据兼容我们的api接口,这个时候我们就需要使用到PHP多维数组重组的方法。
新网 源码,Vscode插件离校安装,ubuntu软电话,tomcat 局部变量,草龟爬虫,php如何攻击网站,重庆seo优化报价表,作品展示网站 源码,百度空间模板lzw
1、请求第三方API接口返回的格式
html5程序设计(第2版) 源码 下载,ubuntu比特币挖矿,家庭常见小爬虫,php ,凯里网站seolzw
array(1) {  [0] =>  array(20) {    'url' =>    string(147) "http:/*************************************************/*****"    'filemtime' =>    int(1525688855)    'app' =>    string(11) "smarket_dev"    'stream' =>    string(23) "stream20180507102518_67"    'start' =>    int(1525688855)    'end' =>    int(1525689358)    'm3u8' =>    string(147) "http://*******************************/**************************/"    'duration' =>    int(503)    'thumbnail' =>    string(100) "https://cdn-************************/********************"    'size' =>    int(9259195)    'width' =>    int(640)    'height' =>    int(360)    'begin' =>    int(0)    'uptime' =>    int(1525689364)    'update' =>    int(1525689364)    'id' =>    string(24) "5af02c1415d5239acc6ee28e"    'title' =>    string(9) "未定义"    'desc' =>    string(9) "未定义"    'case' =>    string(1) "0"    'caseName' =>    string(3) "无"  }}

第三方API接口返回的一般都是数组格式的字符串,我们就可以用数组去处理,处理成我们想要的格式。

h5开发小说网站源码,ubuntu配置y网关,tomcat7+源码+编译,爬虫日文编码,免费php建站教程学习,seo价值lzw
2、在类中写一个处理的方法,调用这个方法即可,返回的数据就是我们想要的

function getRecordInfo($webcastId)    {        $app = 'webinar';        $stream = $webcastId;        $_access_id = '***********';        $_access_key = '*************';        $_openApiUrl = 'http://*************/*******/';        $service = new \webinar\_services\webCast\Impl\AodianyunApi($_access_id, $_access_key, $_openApiUrl);        $result = $service->vodGetInfo($app, $stream);        foreach ($result as $value) {            $results[] = ['createdTime' => $value['filemtime'],'id' => $value['stream'],'recordStartTime' => $value['start'],'recordEndTime' => $value['end'],'size' => $value['size'],'subject' => $value['title'],'url' => $value['url']            ];        }        return $results;    }

3、getRecordInfo返回的数据

array(100) {  [0] =>  array(7) {    'createdTime' =>    int(1527072944)    'id' =>    string(6) "stream"    'recordStartTime' =>    int(1527072944)    'recordEndTime' =>    int(1527073551)    'size' =>    int(131098618)    'subject' =>    string(9) "未定义"    'url' =>    string(105) "https://cdn-************************/********************"  }  [1] =>  array(7) {    'createdTime' =>    int(1526029294)    'id' =>    string(6) "stream"    'recordStartTime' =>    int(1526029294)    'recordEndTime' =>    int(1526029826)    'size' =>    int(114636073)    'subject' =>    string(9) "未定义"    'url' =>    string(105) "https://cdn-************************/********************"  }

4、思路图:

定义处理第三方接口的getRecordInfo()=》在getRecordInfo()中请求第三方api =》将第三方的api返回的数据给到result=》将result数据进行格式处理。

希望本片文章可以帮助到大家,文中如有错误还望指出。谢谢!

更过PHP相关问题请访问PHP中文网:PHP视频教学


使用PHP多维数组重组方法,兼容API接口
  • PHP多维数组转一维数组的简单实现方法【PHP】
  • PHP多维数组转一维数组的简单实现方法【PHP】 | PHP多维数组转一维数组的简单实现方法【PHP】 ...

    使用PHP多维数组重组方法,兼容API接口
  • PHP递归遍历多维数组实现无限分类办法【PHP】
  • PHP递归遍历多维数组实现无限分类办法【PHP】 | PHP递归遍历多维数组实现无限分类办法【PHP】 ...

    使用PHP多维数组重组方法,兼容API接口
  • php实现遍历多维数组办法
  • php实现遍历多维数组办法 | php实现遍历多维数组办法 ...