本文為公司製作API介面後臺的小結! 1.命名註意事項: 不要使用易混淆的名字,如index,index01... 我喜歡用拼音... 比如: 2.資料庫文件修改: 去database.php里把數據得首碼去掉; 3.獲取請求的值: 4.操作資料庫: (1)原生操作: (2)name查詢: 5.返回 ...
本文為公司製作API介面後臺的小結!
1.命名註意事項:
不要使用易混淆的名字,如index,index01...
我喜歡用拼音...
比如:
public function zhuce(Request $request)
2.資料庫文件修改:
去database.php里把數據得首碼去掉;
3.獲取請求的值:
$data = input(); $uid = $uid['uid']; //獲取uid $tel = $data['tel']; //獲取電話號碼 $pwd = $data['password'];//獲取輸入的密碼 $macaddress = $data['macaddress'];//獲取mac地址
4.操作資料庫:
(1)原生操作:
$mi = Db::query("select password from users where uid= {$uid}");
(2)name查詢:
$users = Db::name('users') ->where('uid','=', $uid)//條件 ->select();
5.返回JSON數組:
// 返回json數組 $aa = array( 'code' =>$code, 'msg' => array( 'users'=>$users ), );
輸出:
echo json_encode($aa,256);
256為防止字元亂碼;
-
-
-
暫定