Home Backend Development PHP Tutorial 使用Thinkphp框架开发移动端接口_php实例

使用Thinkphp框架开发移动端接口_php实例

Jun 07, 2016 pm 05:11 PM
php

方案一:给原生APP提供api接口

使用TP框架时 放在common文件夹下文件名就叫function.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

<&#63;php

/**

 * Created by zhangkx

 * Email: zkx520tnhb@163.com

 * Date: 2015/8/1

 * Time: 23:15

 */

  

/*************************** api开发辅助函数 **********************/

  

/**

 * @param null $msg  返回正确的提示信息

 * @param flag success CURD 操作成功

 * @param array $data 具体返回信息

 * Function descript: 返回带参数,标志信息,提示信息的json 数组

 *

 */

function returnApiSuccess($msg = null,$data = array()){

  $result = array(

    'flag' => 'Success',

    'msg' => $msg,

    'data' =>$data

  );

  print json_encode($result);

}

  

/**

 * @param null $msg  返回具体错误的提示信息

 * @param flag success CURD 操作失败

 * Function descript:返回标志信息 ‘Error',和提示信息的json 数组

 */

function returnApiError($msg = null){

  $result = array(

    'flag' => 'Error',

    'msg' => $msg,

  );

  print json_encode($result);

}

  

/**

 * @param null $msg  返回具体错误的提示信息

 * @param flag success CURD 操作失败

 * Function descript:返回标志信息 ‘Error',和提示信息,当前系统繁忙,请稍后重试;

 */

function returnApiErrorExample(){

  $result = array(

    'flag' => 'Error',

    'msg' => '当前系统繁忙,请稍后重试!',

  );

  print json_encode($result);

}

  

/**

 * @param null $data

 * @return array|mixed|null

 * Function descript: 过滤post提交的参数;

 *

 */

  

 function checkDataPost($data = null){

  if(!empty($data)){

    $data = explode(',',$data);

    foreach($data as $k=>$v){

      if((!isset($_POST[$k]))||(empty($_POST[$k]))){

        if($_POST[$k]!==0 && $_POST[$k]!=='0'){

          returnApiError($k.'值为空!');

        }

      }

    }

    unset($data);

    $data = I('post.');

    unset($data['_URL_'],$data['token']);

    return $data;

  }

}

  

/**

 * @param null $data

 * @return array|mixed|null

 * Function descript: 过滤get提交的参数;

 *

 */

function checkDataGet($data = null){

  if(!empty($data)){

    $data = explode(',',$data);

    foreach($data as $k=>$v){

      if((!isset($_GET[$k]))||(empty($_GET[$k]))){

        if($_GET[$k]!==0 && $_GET[$k]!=='0'){

          returnApiError($k.'值为空!');

        }

      }

    }

    unset($data);

    $data = I('get.');

    unset($data['_URL_'],$data['token']);

    return $data;

  }

}

Copy after login

查询单个果品详细信息

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

/**

  * 发布模块

  *

  * 获取信息单个果品详细信息

  *

  */

  public function getMyReleaseInfo(){

    //检查是否通过post方法得到数据

    checkdataPost('id');

    $where['id'] = $_POST['id'];

    $field[] = 'id,fruit_name,high_price,low_price,address,size,weight,fruit_pic,remark';

    $releaseInfo = $this->release_obj->findRelease($where,$field);

    $releaseInfo['remark'] = mb_substr($releaseInfo['remark'],0,49,'utf-8').'...';

    //多张图地址按逗号截取字符串,截取后如果存在空数组则需要过滤掉

    $releaseInfo['fruit_pic'] = array_filter(explode(',', $releaseInfo['fruit_pic']));

    $fruit_pic = $releaseInfo['fruit_pic'];unset($releaseInfo['fruit_pic']);

    //为图片添加存储路径

    foreach($fruit_pic as $k=>$v ){

      $releaseInfo['fruit_pic'][] = 'http://'.$_SERVER['HTTP_HOST'].'/Uploads/Release/'.$v;

    }

    if($releaseInfo){

      returnApiSuccess('',$releaseInfo);

    }else{

      returnApiError( '什么也没查到(+_+)!');

    }

  }

Copy after login

findRelease() 方法的model

1

2

3

4

5

6

7

8

9

10

/**

  * 查询一条数据

  */

  public function findRelease($where,$field){

    if($where['status'] == '' || empty($where['status'])){

      $where['status'] = array('neq','9');

    }

    $result = $this->where($where)->field($field)->find();

    return $result;

  }

Copy after login

app端接收到的数据(解码json之后)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

{

  "flag": "success",

  "message": "",

  "responseList": {

    "id": "2",

    "fruit_name": "苹果",

    "high_price": "8.0",

    "low_price": "5.0",

    "address": "天津小白楼水果市场",

    "size": "2.0",

    "weight": "2.0",

    "remark": "急需...",

    "fruit_pic": [

      "http://fruit.txunda.com/Uploads/Release/201508/55599e7514815.png",

      "http://fruit.txunda.com/Uploads/Release/201508/554f2dc45b526.jpg"

    ]

  }

}

Copy after login

app端接收到的数据(原生json串)

复制代码 代码如下:

{"flag":"success","message":"","responseList":{"id":"2","fruit_name":"\u82f9\u679c","high_price":"8.0","low_price":"5.0","address":"\u5929\u6d25\u5c0f\u767d\u697c\u6c34\u679c\u5e02\u573a","size":"2.0","weight":"2.0","remark":"\u6025\u9700...","fruit_pic":["http:\/\/fruit.txunda.com\/Uploads\/Release\/201508\/55599e7514815.png","http:\/\/fruit.txunda.com\/Uploads\/Release\/201508\/554f2dc45b526.jpg"]}}

方案二:另外我们还可以通过ThinkPHP实现移动端访问自动切换主题模板,这样也可以做到移动端访问

ThinkPHP的模板主题机制,如果只是在PC,只要需修改 DEFAULT_THEME (新版模板主题默认是空,表示不启用模板主题功能)配置项就可以方便的实现多模板主题切换。

  但对于移动端和PC端,也许你会设计完全不同的主题风格,且针对不同的来路提供不同的渲染方式,其中一种比较流行的方法是“响应式设计”,但就本人经历而言,要实现完全的“响应式设计”并不是那么容易,且解决兼容问题也是个难题,假设是大型站点,比如:淘宝、百度、拍拍这些,响应式设计肯定是满足不了需求的,而是需要针对手机访问用户提供单独的手机网站。

ThinkPHP 完全可以实现,而且相当简单。和TPM的智能模版切换引擎一样,只要对来路进行判断处理即可。

一、将 ismobile() 加入到{项目/Common/common.php}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

function ismobile() {

  // 如果有HTTP_X_WAP_PROFILE则一定是移动设备

  if (isset ($_SERVER['HTTP_X_WAP_PROFILE']))

    return true;

   

  //此条摘自TPM智能切换模板引擎,适合TPM开发

  if(isset ($_SERVER['HTTP_CLIENT']) &&'PhoneClient'==$_SERVER['HTTP_CLIENT'])

    return true;

  //如果via信息含有wap则一定是移动设备,部分服务商会屏蔽该信息

  if (isset ($_SERVER['HTTP_VIA']))

    //找不到为flase,否则为true

    return stristr($_SERVER['HTTP_VIA'], 'wap') &#63; true : false;

  //判断手机发送的客户端标志,兼容性有待提高

  if (isset ($_SERVER['HTTP_USER_AGENT'])) {

    $clientkeywords = array(

      'nokia','sony','ericsson','mot','samsung','htc','sgh','lg','sharp','sie-','philips','panasonic','alcatel','lenovo','iphone','ipod','blackberry','meizu','android','netfront','symbian','ucweb','windowsce','palm','operamini','operamobi','openwave','nexusone','cldc','midp','wap','mobile'

    );

    //从HTTP_USER_AGENT中查找手机浏览器的关键字

    if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) {

      return true;

    }

  }

  //协议法,因为有可能不准确,放到最后判断

  if (isset ($_SERVER['HTTP_ACCEPT'])) {

    // 如果只支持wml并且不支持html那一定是移动设备

    // 如果支持wml和html但是wml在html之前则是移动设备

    if ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos($_SERVER['HTTP_ACCEPT'], 'text/html') === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos($_SERVER['HTTP_ACCEPT'], 'text/html')))) {

      return true;

    }

  }

  return false;

 }

Copy after login

二、在{项目/Lib/}创建一个 CommonAction.php,如果你的项目已公共控制器,则无需创建,直接加在里面即可。

1

2

3

4

5

6

7

8

9

10

Class CommonAction extends Action{

  Public function _initialize(){

    //移动设备浏览,则切换模板

    if (ismobile()) {

      //设置默认默认主题为 Mobile

      C('DEFAULT_THEME','Mobile');

    }

    //............你的更多代码.......

  }

 }

Copy after login

通过以上2种方式均可实现移动端访问,一种是原生,一种是伪原生,小伙伴们根据自己的项目需求来选择吧。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles