private function OpCacheDataModel::_format_value in Production check & Production monitor 6
Same name and namespace in other branches
- 7 includes/prod_check.opcache.inc \OpCacheDataModel::_format_value()
 
1 call to OpCacheDataModel::_format_value()
File
- includes/
prod_check.opcache.inc, line 251  
Class
Code
private function _format_value($value) {
  if (THOUSAND_SEPARATOR === true) {
    return number_format($value);
  }
  else {
    return $value;
  }
}