non well formed numeric value

A non well formed numeric value encountered in C:\xampp\htdocs\Abhi\SuiteCRM-7.9.6\include\utils.php on line 3551

function return_bytes($val)
{
$val = trim($val);
$last = strtolower($val{strlen($val) - 1});

switch ($last) {
    // The 'G' modifier is available since PHP 5.1.0
    case 'g':
        $val *= 1024;
    case 'm':
        $val *= 1024; ['on this line']
    case 'k':
        $val *= 1024;
}

return $val;

}

You need to turn off error_reporting in php.ini in XAMPP.

Google will help you achieve this, search for it.