我有以下课程:
class Mode{
const Enabled = 1;
const Disabled = 2;
const Pending = 3;
}
class Product{
public static $Modes = Mode;
}
我想通过对 Product 的静态访问来访问 Mode 类的常量。
if($product_mode == Product::$Modes::Pending){
//do something
}
有没有办法做到这一点?