首頁  >  文章  >  後端開發  >  PHP開發APP介面全過程(一)

PHP開發APP介面全過程(一)

angryTom
angryTom轉載
2019-10-12 14:22:133971瀏覽

1、學習重點: 

伺服器端–>資料庫|快取–>呼叫介面–>客戶端 

2、APP介面介紹:(PHP開發APP介面) 

PHP物件導向的介面:抽象類,interface定義==>interface.php 

===>1.很規範 

APP介面(通訊介面):透過介面取得數據,將資料填入APP中 

—>APP開發人員注意:請APP位址(介面位址) 傳回資料 

APP(通訊)介面定義: 

1.介面位址:http://app.com/api.php?format=xml

2.介面檔案:app. php處理一些業務邏輯 

3.介面資料

(推薦學習:PHP視訊教學

3.客戶端APP通信: 

APP是如何進行通訊的:

      C   (接口地址:http://app.com/api.php?format=xml/json)     S
   客户端APP            ------------------------------>             服务器
                      <-----------------------------                                    
                         返回数据

#4.用戶端APP通訊格式區別 

1.xml:擴充標記語言(1.用來標記數據,定義數據類型,是一種允許用戶對自己的標記語言進行定義的源語言,xml格式統一,跨平台和語言,非常適合數據傳輸和通信,早已成為業界公認的標準)

<?xml version="1.0" encoding="UTF-8"?>
    <item>
        <title>测试</title>
        <test id="1">
        <description>测试oen</description>
        <address>深圳</address>
    </item>

   2.json:一種清涼等級的資料交換格式,具有良好的可讀和便於快速編寫的特性,可在不同平台證件進行資料交換,JSON採用相容性很高的,完全獨立於語言文字格式。這種特性使JSON成為理想的資料交換語言。

XML的可讀性要好,JSON的生成數據性(json_encode(數組)) 傳輸速度方面要好

5.APP接口做的那些事: 

取得資料:從資料庫或快取取得數據,然後透過介面資料傳回客戶端 

#提交資料:透過介面提交資料給伺服器,然後透過伺服器入庫處理,或其他處理

6.JSON方式封裝通訊介面 

PHP產生json資料:json_encode($arr); 

註解:此函數只能接受UTF -8編碼的數據,如果傳遞其他格式的數據該函數會傳回null 

通訊資料標註格式: 

code 状态码(200 400等) 
message 提示信息(邮箱格式不正确;数据返回成功等) 
data 返回相应的数据 
—————————- 
-JSON 
code : 200 
message :”数据返回成功” 
-data 
id :1 
name : “测试”

實例:

  某个server中:
    public  function json($code,$message = &#39;&#39;,$data = array())
    {
            if (!is_numeric($code)){
                return &#39;错误&#39;;
            }
             $result = array(
                &#39;code&#39; => $code,
                &#39;message&#39; => $message,
                &#39;data&#39; => $data
        );
        echo json_encode($result);
        exit;
       }

某個Controller:

    public function jsonsAction()
           {
               $arr = array(
                   &#39;id&#39; => 1,
                   &#39;name&#39; => &#39;jiang&#39;
              );
            $k = wei()->zhwCategory()->json(200,&#39;成功咯&#39;,$arr);
            return $k;
            }

瀏覽器:http://127.0.0.1/admin/zhw-categorys/jsons

{"code":200,"message":"\u6210\u529f\u54af","data":{"id":1,"name":"jiang"}}

7.PHP產生XML資料: 

7.1 PHP產生XML資料 

1.組裝字串 

2.使用系統類別:DomDocument 

XMLWriter 

#SimpleXML 

#如用DomDocument:

    <?php 
                     $dom = new DomDocument(&#39;1.0&#39;,&#39;utf-8&#39;);
                     $element = $dom->createElement(&#39;test&#39;,&#39;This id root element&#39;);
                     $dom->appendChild($element);
                     echo $dom->saveXML();
              ?>

====>結果:

           <?xml version="1.0" encoding="utf-8"?>
           <test>This is the root element</test>

使用組裝字串的簡單實例性:

    public static function xml()
            {
                  header("Content-Type:text/html");
                  $xml = "<?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39;?>\n";
                  $xml .= "<root>\n";
                  $xml .= "<code>200</code>\n";
                  $xml .= "<message>数据返回成功</message>\n";
                  $xml .= "<data>\n";
                  $xml .="<id>1</id>\n";
                  $xml .="<name>测试</name>\n";
                  $xml .="</data>\n";
                  $xml .="<root>";
                  echo $xml;
             }
  7.2封装XML数据方法:
          封装方法:xmlEncode($code,$message=&#39;&#39;,$data = array());
         data数据分析:
                 1.array(&#39;index&#39; => &#39;api&#39;);
                 2.array(1,7.89);
        具体:
            server模块下:
    public function xmlEncode($code,$message = &#39;&#39;,$data=array())
             {
                 if(!is_numeric($code)){
                    return "错误";
                 }
                 $result = array(
                     &#39;code&#39; => $code,
                     &#39;message&#39; => $message,
                     &#39;data&#39; => $data,
                 );
                 header("Content-Type:text/xml");
                 $xml = "<?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39;?>\n";
                 $xml .= "<root>\n";
                 $xml .=self::xmlToEncode($result);
                 $xml .="</root>";
                 echo $xml;
             }
        //对数据再处理
    public function xmlToEncode($data){
               $xml = $attr ="";
               foreach ($data as $key=>$value){
               if(is_numeric($key)){
                   $attr = "id=&#39;{$key}&#39;";
                   $key = "item";
               }
               $xml .= "<{$key} {$attr}>";  //它们{$key} {$attr}之间要有一个小空格
               $xml .=is_array($value) ? self::xmlToEncode($value):$value;
               $xml .="</{$key}>\n";
            }
               return $xml;
            }
某个Controller:
     public function xmlsAction()
        {
            $arr = array(
               &#39;id&#39; => 1,
               &#39;name&#39; => &#39;jiang&#39;,
               &#39;type&#39; =>array(4,5,6),
               &#39;test&#39; =>array(1,45,67=>array(1,2,3)),
            );
           $k = wei()->zhwCategory()->xmlEncode(200,&#39;成功咯&#39;,$arr);
           return $k;
         }

#8 .綜合方式封裝通訊資料方法:

   封装方法:show($code,$message,$data=array(),$type=&#39;json/xml&#39;)

#最終頁面: 

server:

<?php

namespace Miaoxing\Zhw\Service;

use miaoxing\plugin\BaseModel;

class ZhwCategory extends BaseModel
{
    const JSON = "json";
    /**
     * 按x综合方式输出通信数据
     * @param integer $code 状态码
     * @param string $message 提示信息
     * @param array $data 数据
     * @param string $type 数据类型
     * return string
     */
    public function show($code,$message=&#39;&#39;,$data=array(),$type = self::JSON)
    {
        if (!is_numeric($code)){
            return "错误编码";
        }
        $result = array(
            &#39;code&#39; => $code,
            &#39;message&#39; => $message,
            &#39;data&#39; => $data,
        );
        if($type == &#39;json&#39;){
            self::json($code,$message,$data);
            exit;
        }elseif($type == &#39;array&#39;){
            var_dump($result);
        }elseif ($type == &#39;xml&#39;){
            self::xmlEncode($code,$message,$data);
            exit;
        }else{
            //TODO
        }
    }
    /**
     * 按json方式输出通信数据
     * @param integer $code 状态码
     * @param string $message 提示信息
     * @param array $data 数据
     * return string
     */
    public  function json($code,$message = &#39;&#39;,$data = array())
    {
        if (!is_numeric($code)){
            return &#39;错误&#39;;
        }
        $result = array(
            &#39;code&#39; => $code,
            &#39;message&#39; => $message,
            &#39;data&#39; => $data
        );
        echo json_encode($result);
        exit;
    }
    /**
     * 按xml方式输出通信数据
     * @param integer $code 状态码
     * @param string $message 提示信息
     * @param array $data 数据
     * return string
     */
    public function xmlEncode($code,$message = &#39;&#39;,$data=array())
    {
        if(!is_numeric($code)){
            return "错误";
        }
        $result = array(
            &#39;code&#39; => $code,
            &#39;message&#39; => $message,
            &#39;data&#39; => $data,
        );
        header("Content-Type:text/xml");
        $xml = "<?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39;?>\n";
        $xml .= "<root>\n";
        $xml .=self::xmlToEncode($result);
        $xml .="</root>";
        echo $xml;
    }
    //对数据再处理
    public function xmlToEncode($data){
        $xml = $attr ="";
        foreach ($data as $key=>$value){
            if(is_numeric($key)){
                $attr = "id=&#39;{$key}&#39;";
                $key = "item";
            }
            $xml .= "<{$key} {$attr}>";
            $xml .=is_array($value) ? self::xmlToEncode($value):$value;
            $xml .="</{$key}>\n";
        }
        return $xml;
    }
}
Controller:
public 
function jsonsAction()
    {
        $arr = array(
            &#39;id&#39; => 1,
            &#39;name&#39; => &#39;jiang&#39;
        );
        $k = wei()-
>zhwCategory()->json(200,&#39;成功咯&#39;,$arr);
        return $k;
    }
    public function xmlsAction()
    {
        $arr = array(
            
&#39;id&#39; => 1,
            &#39;name&#39; => &#39;jiang&#39;,
            &#39;type&#39; =>array(4,5,6),
            &#39;test&#39; =>array(1,45,67=>array(1,2,3)),
        
);
        $k = wei()->zhwCategory()->xmlEncode(200,&#39;成功咯&#39;,$arr);
        return $k;
    }
    public function showAction()
    {
        
$arr = array(
            &#39;id&#39; => 1,
            &#39;name&#39; => &#39;jiang&#39;,
            &#39;type&#39; =>array(4,5,6),
            &#39;test&#39; =>array
(1,45,67=>array(1,2,3)),
        );
        $k = wei()->zhwCategory()->show(200,&#39;成功咯&#39;,$arr,&#39;json&#39;);
        return $k;
    }

以上是PHP開發APP介面全過程(一)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除

相關文章

看更多