function pImage::getFirstDecimal in Visitors 7.2
Same name and namespace in other branches
- 7 pChart/class/pImage.class.php \pImage::getFirstDecimal()
File
- pChart/
class/ pImage.class.php, line 256
Class
Code
function getFirstDecimal($Value) {
$Values = preg_split("/\\./", $Value);
if (isset($Values[1])) {
return substr($Values[1], 0, 1);
}
else {
return 0;
}
}