這篇文章主要介紹了PHP框架Laravel中使用UUID實現資料分錶操作,結合實例形式較為詳細的分析了Laravel框架基於UUID進行資料分錶的相關操作步驟、實作技巧與操作注意事項,需要的朋友可以參考下
本文實例講述了PHP框架Laravel中使用UUID實作資料分錶操作。分享給大家供大家參考,具體如下:
UUID
#UUID是指在一台機器上產生的數字,它保證對在同一時空中的所有機器都是唯一的。
所說的簡單點,它就是透過一個規則(如:業務識別號碼 年月日 當日自增數字格式化)產生的一個具有唯一性的辨識資訊。用於關聯我們的一些額數據和資訊。
實例
之前在做一個專案的時候用到這個東西,現在我就用Laravel框架寫一個簡單的demo
前端form表單
<!DOCTYPE html> <html> <head></head> <body> <form action="/addMysql" method="post"> {!!csrf_field()!!} <table> <tr> <th style="colspan:2">注册</th> </tr> <tr> <td>账号</td> <td> <input type="text" name="uname" value="" /> </td> </tr> <tr> <td>密码</td> <td> <input type="password" name="pwd" value="" /> </td> </tr> <tr> <td>性别</td> <td> <input type="radio" name="sex" value="1" />:男 <input type="radio" name="sex" value="0" />:女 </td> </tr> <tr> <td>年龄</td> <td> <input type="text" name="age" value="" /> </td> </tr> <tr> <td style="colspan:2"> <input type="submit" value="提交" /> </td> </tr> </table> </form> </body> </html>
建立資料庫和資料表(只建立1 個索引表和8 個進行儲存詳細資料的子表)
原理:透過UUID的唯一特性,將一個資料的詳細資料資料存在其他表中的,這個表示透過UUID隨機分配出來的,索引表中只儲存UUID和關鍵欄位
表前缀统一前缀-------mall_ 表 : mall_index_user 索引表 -------uuid,uname 表0: mall_user_0 uuid,uname,sex,age 表1: mall_user_1 表2: mall_user_2 表3: mall_user_3 表4: mall_user_4 表5: mall_user_5 表6: mall_user_6 表7: mall_user_7
透過路由和控制器進行form表單提交資料向資料庫插入資料
路由:
//form表单页面路由 Route::get('Mysql',function(){ return view('home/Mysql'); }); //数据插入提交路由 Route::post('/addMysql','findMoreController@addMysql');
#控制器:
//向数据库插入数据 public function addMysql(Request $request){ $uuid =md5(uniqid(mt_rand (), true)); $uid =hexdec(substr($uuid,0,1)) % 8; $sex = $request->input('sex'); $age = $request->input('age'); //dd($uuid); $uname = $request->input('uname'); $result = DB::table('index_user')->insert(['uuid'=>$uuid,'uname'=>$uname]); $result1 = DB::table('user_'.$uid)->insert(['uuid'=>$uuid,'uname'=>$uname,'sex'=>$sex,'age'=>$age]); if($result1){ return '1'; }else{ return '0'; } }
解:上面的$uid就是透過UUID得到的要向哪一張詳細資料表中插入的表的代表號
例如:$uid=3 那麼就向user_3插入詳細資料
插入成功後進行查詢,先透過uname查詢出UUID,透過UUID知道詳細資料儲存在哪張子表中.然後再進行查詢
路由:
#//查询页面 Route::get('findMysql',function(){ return view('home/findMysql'); }); //查询路由 Route::post('/findMysql','findMoreController@findMysql');
控制器:
//查询 public function findMysql(Request $request){ //dd($request); $uname=$request->input('uname'); $uuid =DB::table('index_user')->where('uname','=',$uname)->value('uuid'); $uid =hexdec(substr($uuid,0,1)) % 8; $userInfos=DB::table('user_'.$uid)->get(); if($userInfos){ return view('home/selectMysql',['userInfos'=>$userInfos]); }else{ return view('home/findMysql'); } }
前端展示
#<!DOCTYPE html> <html> <head></head> <body> <form action="" method="post"> <table> <tr> <th style="colspan:2">遍历</th> </tr> @foreach($userInfos as $userInfo) <tr> <td>性别</td> <td> <input type="text" name="" value="{{$userInfo->sex}}" /> </td> </tr> <tr> <td>年龄</td> <td> <input type="text" name="" value="{{$userInfo->age}}" /> </td> </tr> @endforeach </table> </form> </body> </html>
至此,一個簡單的利用UUID分錶處理資料的例子就完成了。
相關建議:
以上是PHP框架Laravel中使用UUID實作資料分錶操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!