yii2框架中的双冒号是什么意思

2025-04-29 10:44:34
推荐回答(1个)
回答1:

双冒号?
例如 Order::Creat($id);这种么,就是用类里的方法。
Class Order(){
function Creeat($id){
return XXX;
}
}