Warning!

Fuel\Core\PhpErrorException [ Warning ]:
A non-numeric value encountered

APPPATH/classes/controller/front/nar.php @ line 795

790            {
791
792                //1着馬走破タイム取得
793                $kachiumatime = \Model_Nar::get_kachiumatime($val['race_id']);
794                $kachitime_tmp $kachiumatime['souha_time'];
795                $kachitime_tmp intval(substr($kachitime_tmp,0,1)*60)+intval(substr($kachitime_tmp,2,2))+round(substr($kachitime_tmp,5,1)/10,1);
796                $souhatime_tmp $val['souha_time'];
797                $souhatime_tmp intval(substr($souhatime_tmp,0,1)*60)+intval(substr($souhatime_tmp,2,2))+round(substr($souhatime_tmp,5,1)/10,1);
798                $timesa round($souhatime_tmp,1) - round($kachitime_tmp,1);
799                $timesa round($timesa,1);
800

Backtrace

  1. COREPATH/bootstrap.php @ line 103
    98        include COREPATH.'classes/errorhandler.php';
    99        class_alias('\Fuel\Core\Errorhandler''Errorhandler');
    100        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    101    }
    102
    103    return \Errorhandler::error_handler($severity$message$filepath$line);
    104});
    105
    106function setup_autoloader()
    107{
    108    \Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. APPPATH/classes/controller/front/nar.php @ line 795
    790            {
    791
    792                //1着馬走破タイム取得
    793                $kachiumatime = \Model_Nar::get_kachiumatime($val['race_id']);
    794                $kachitime_tmp $kachiumatime['souha_time'];
    795                $kachitime_tmp intval(substr($kachitime_tmp,0,1)*60)+intval(substr($kachitime_tmp,2,2))+round(substr($kachitime_tmp,5,1)/10,1);
    796                $souhatime_tmp $val['souha_time'];
    797                $souhatime_tmp intval(substr($souhatime_tmp,0,1)*60)+intval(substr($souhatime_tmp,2,2))+round(substr($souhatime_tmp,5,1)/10,1);
    798                $timesa round($souhatime_tmp,1) - round($kachitime_tmp,1);
    799                $timesa round($timesa,1);
    800
    
  3. COREPATH/base56.php @ line 37
    32                $args array_values($args);
    33            }
    34
    35            list($instance$method) = $callback;
    36
    37            return $instance->{$method}(...$args);
    38        }
    39
    40        // static call?
    41        elseif (is_array($callback) and isset($callback[1]) and is_string($callback[0]))
    42        {
    
  4. COREPATH/classes/controller/hybrid.php @ line 81
    76        }
    77
    78        // check if the action method exists
    79        if (method_exists($this$controller_method))
    80        {
    81            return call_fuel_func_array(array($this$controller_method), $arguments);
    82        }
    83
    84        // if not, we got ourselfs a genuine 404!
    85        throw new \HttpNotFoundException();
    86    }
    
  5. COREPATH/classes/request.php @ line 454
    449                    // fire any controller started events
    450                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    451
    452                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    453
    454                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    455
    456                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    457
    458                    // fire any controller finished events
    459                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  6. DOCROOT/index.php @ line 69
    64require APPPATH.'bootstrap.php';
    65
    66// Generate the request, execute it and send the output.
    67try
    68{
    69    $response Request::forge()->execute()->response();
    70}
    71catch (HttpNotFoundException $e)
    72{
    73    $route array_key_exists('_404_'Router::$routes) ? Router::$routes['_404_']->translation Config::get('routes._404_');
    74
    
Code Profiler