php api开发案例,php开发API接口的代码案例

php开发API接口的代码案例

[php] view plain copy print?<?php require

'conn.php';

header('Content-Type:text/html;charset=utf-8'); $action = $_GET['action']; switch ($action) { //注册会员case"adduserinfo"; $username =

lib_replace_end_tag(trim($_GET['username'])); $password2 =

lib_replace_end_tag(trim($_GET['userpassword'])); $password = md5("$password2" . ALL_PS);

$email = lib_replace_end_tag(trim($_GET['email']));

if ($username == '' || $password2 == '' || $password == '') { $res = urlencode("参数有误");

exit(json_encode($res)); //有空信息}

$sql = "select username from `member` where

username='$username'"; $query =

mysql_query($sql, $conn); $count =

mysql_num_rows($query); if ($count > 0) { exit(json_encode(1)); //返回1表示注册失败} else { $addsql = "insert into `member` (username,password,email) values

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值