有这两个类:
class run {
public static $where = "there";
}
class there {
public static $place_name = "A beautiful place..";
}
要获得 place_name 我可以这样做:
$place = "there";
echo $place::$place_name;
但我可能想在某个时候做这样的事情..:
echo {$run::$where}::$place_name;
显然,最后一个片段不起作用。有没有办法让它发挥作用?