我有这样的课:
class someClass {
public static function getBy($method,$value) {
// returns collection of objects of this class based on search criteria
$return_array = array();
$sql = // get some data "WHERE `$method` = '$value'
$result = mysql_query($sql);
while($row = mysql_fetch_assoc($result)) {
$new_obj = new $this($a,$b);
$return_array[] = $new_obj;
}
return $return_array;
}
}
我的问题是:我可以像上面那样使用 $this 吗?
代替:
$new_obj = new $this($a,$b);
我可以写:
$new_obj = new someClass($a,$b);
但是当我扩展类时,我将不得不重写该方法。如果第一个选项有效,我就不必了。
更新解决方案:
这两个都在基类中工作:
1.)
$new_obj = new static($a,$b);
2.)
$this_class = get_class();
$new_obj = new $this_class($a,$b);
我还没有在儿童班中尝试过它们,但我认为#2 会在那里失败。
此外,这不起作用:
$new_obj = new get_class()($a,$b);
它会导致解析错误:Unexpected '(' 它必须分两步完成,如上面的 2.),或者更好,如 1.)。