I have a problem when call static property:
const LOW = 'somethg';
When I try like that it's ok:
$arrv = FuzzyClass::$terms[$pk][FuzzyQuery::LOW];
But I need to use variable name and it doesn't work:
$pv = 'LOW';
$arrv = FuzzyClass::$terms[$pk][FuzzyQuery::$pv];