Warning!

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

APPPATH/classes/model/mworld.php @ line 672

667
668
669        //着順・頭数補正
670        if (!empty($ztyakujyun) && !empty($ztousuu))
671        {
672            $hensachi =number_format($hensachi + (($ztousuu $ztyakujyun)));
673        }
674
675
676
677            

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/model/mworld.php @ line 672
    667
    668
    669        //着順・頭数補正
    670        if (!empty($ztyakujyun) && !empty($ztousuu))
    671        {
    672            $hensachi =number_format($hensachi + (($ztousuu $ztyakujyun)));
    673        }
    674
    675
    676
    677            
    
  3. APPPATH/classes/model/mworld.php @ line 198
    193                    //指数計算
    194                    $denma[$key]['z' $i '_hensachi']="";
    195
    196                    if(!empty($val['z' $i '_tousuu']))
    197                    {
    198                        $denma[$key]['z' $i '_hensachi'] = \Model_Mworld::make_kshisuu($val['z' $i '_hensachi'], $val['z' $i '_tyakujyun'], $val['z' $i '_tousuu'], $val['z' $i '_grade'], $val['z' $i '_kj_name']);
    199                    }
    200
    201                }
    202
    203                //最大指数計算
    
  4. APPPATH/classes/controller/front/world.php @ line 74
    69        catch(CacheNotFoundException  $e)
    70        {
    71
    72            //出馬表データ取得
    73            $denma = array();
    74            $denma = \Model_Mworld::get_denma($race_id);
    75
    76            if (empty($denma))
    77            {
    78                header('Location: /error/404.html');
    79                exit;
    
  5. 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        {
    
  6. 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    }
    
  7. 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');
    
  8. 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