php api 写法,php的api数据接口书写实例详解

  • Post author:
  • Post category:php


本篇文章主要介绍php的api数据接口书写实例详解,感兴趣的朋友参考下,希望对大家有所帮助。

以下是接口代码实例:

$output = array();

$a = @$_GET[‘a’] ? $_GET[‘a’] : ”;

$uid = @$_GET[‘uid’] ? $_GET[‘uid’] : 0;

if (empty($a)) {

$output = array(‘data’=>NULL, ‘info’=>’坑爹啊!’, ‘code’=>-201);

exit(json_encode($output));

}

//走接口

if ($a == ‘get_users’) {

//检查用户

if ($uid == 0) {

$output = array(‘data’=>NULL, ‘info’=>’The uid is null!’, ‘code’=>-401);

exit(json_encode($output));

}

//假设 $mysql 是数据库

$mysql = array(

10001 => array(

‘uid’=>10001,

‘vip’=>5,