ORM——關係物件模型
laravel中的Eloquent ORM用於和資料表互動,其中每個資料庫表會和一個對應的「模型」互動,想要了解請查看官方文件或自行百度。取得關聯表裡的屬性值程式碼如下:
/** * [getContactAttribute 获取卖家联系人] */ public function getContactAttribute() { return $this->hasOne('App\Http\Models\Supplier', 'SupplierId', 'SupplierId')->first()->contact; }
以上就介紹了orm取得關聯表裡的屬性值,包含了orm方面的內容,希望對PHP教學有興趣的朋友有幫助。