如果要执行以下操作:
$filteredValues = array_filter($rawValues, function($rawValue) {
return $this->validateValue($rawValue);
});
validateValue
是同一类中的私有方法。
我如何以这种方式在 array_filter 中使用 $this 上下文?
如果要执行以下操作:
$filteredValues = array_filter($rawValues, function($rawValue) {
return $this->validateValue($rawValue);
});
validateValue
是同一类中的私有方法。
我如何以这种方式在 array_filter 中使用 $this 上下文?