這篇文章主要介紹了關於thinkphp中model的使用方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
首先:有三個資料表
現在用命令列建立它們的模型
<code style="background: #f9fafa; margin: 0px; padding: 0px; border: currentColor; line-height: inherit; font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 13.56px; display: inline; white-space: pre; max-width: 100%"><span class="bash">php think make:model admin/Class<br/></span></code>
<code style="max-width:90%"><span class="bash">php think make:model index/Teacher<br/></span></code>
php think make:model index/Student
用法:
$list = Classs::all(); foreach($list as $key=>$value){ $list[$key]['student'] -----学生(一个班级对应学生多个) $list[$key]['teacher'] ------老师(一个班级对应学生一个) } --------------------------------------------------------------------------------------------- $list = TeacherDb::all(); foreach($list as $key=>$value){ $list[$key][‘class’] -----班级(一个老师对应学生一个) }
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
#以上是thinkphp中model的使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!