2016-10-26 11:07发布
有A,B两个模块,A模块数据库中内容修改要使B模块的数据跟着一起修改,A模块还可以读取B模块的一些数据。
该如何设计才能最大程度降低模块间的耦合性?
// setting the attribute that defines the "customer" relation in Order$order->customer_id = $customer->id;$order->save();
最多设置5个标签!
// setting the attribute that defines the "customer" relation in Order
$order->customer_id = $customer->id;
$order->save();
一周热门 更多>