With a class like
class MyClass {
static var1 = "a";
static var2 = "b";
}
... I'd like to retrieve the static members and their values at runtime; something like
Array(
"var1" => "a",
"var2" => "b"
)
Is there any way to do this in PHP?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…