Notice!

Fuel\Core\PhpErrorException [ Notice ]:
Undefined offset: 9999

APPPATH/views/detail.php @ line 64

59                                                <th scope="col">所在地</th>
60                                                <td><?= $data["pref_name"] == "東京23区" "東京都"  $data["pref_name"?><?= $data["city_name"?><?= $data["jus_003"?></td>
61                                            </tr>
62                                            <tr>
63                                                <th scope="col">宗旨・宗派</th>
64                                                <td><?= $religionList[$data["syu"]]["name"]?></td>
65                                            </tr>
66                                            <tr>
67                                                <th scope="col">墓地種別</th>
68                                                <td><?= @$configData["typeList"][$data["kii"]] ?></td>
69                                            </tr>

Backtrace

  1. COREPATH/bootstrap.php @ line 112
    107        include COREPATH.'classes/errorhandler.php';
    108        class_alias('\Fuel\Core\Errorhandler''Errorhandler');
    109        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    110    }
    111
    112    return \Errorhandler::error_handler($severity$message$filepath$line);
    113});
    114
    115function setup_autoloader()
    116{
    117    \Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. APPPATH/views/detail.php @ line 64
    59                                                <th scope="col">所在地</th>
    60                                                <td><?= $data["pref_name"] == "東京23区" "東京都"  $data["pref_name"?><?= $data["city_name"?><?= $data["jus_003"?></td>
    61                                            </tr>
    62                                            <tr>
    63                                                <th scope="col">宗旨・宗派</th>
    64                                                <td><?= $religionList[$data["syu"]]["name"]?></td>
    65                                            </tr>
    66                                            <tr>
    67                                                <th scope="col">墓地種別</th>
    68                                                <td><?= @$configData["typeList"][$data["kii"]] ?></td>
    69                                            </tr>
    
  3. COREPATH/classes/view.php @ line 258
    253            ob_start();
    254
    255            try
    256            {
    257                // Load the view within the current scope
    258                include $__file_name;
    259            }
    260            catch (\Exception $e)
    261            {
    262                // Delete the output buffer
    263                ob_end_clean();
    
  4. COREPATH/classes/view.php @ line 274
    269            // Get the captured output and close the buffer
    270            return ob_get_clean();
    271        };
    272
    273        // import and process the view file
    274        $result $clean_room($file_override ?: $this->file_name$data $this->get_data());
    275
    276        // disable sanitization on objects that support it
    277        $this->unsanitize($data);
    278
    279        // return the result
    
  5. COREPATH/classes/view.php @ line 680
    675        {
    676            throw new \FuelException('You must set the file to use within your view before rendering');
    677        }
    678
    679        // combine local and global data and capture the output
    680        $return $this->process_file();
    681
    682        // restore the current language setting
    683        $this->active_language and \Config::set('language'$current_language);
    684
    685        // and the active request class
    
  6. COREPATH/classes/view.php @ line 227
    222     */
    223    public function __toString()
    224    {
    225        try
    226        {
    227            return $this->render();
    228        }
    229        catch (\Exception $e)
    230        {
    231            \Errorhandler::exception_handler($e);
    232
    
  7. APPPATH/views/template_front.php @ line 217
    212        </div>
    213        <!-- /汎用:パンくずリスト -->
    214<?php ?>
    215
    216
    217    <?= $content ?>
    218
    219    </main>
    220</div><!-- /.site_main -->
    221
    222
    
  8. COREPATH/classes/view.php @ line 258
    253            ob_start();
    254
    255            try
    256            {
    257                // Load the view within the current scope
    258                include $__file_name;
    259            }
    260            catch (\Exception $e)
    261            {
    262                // Delete the output buffer
    263                ob_end_clean();
    
  9. COREPATH/classes/view.php @ line 274
    269            // Get the captured output and close the buffer
    270            return ob_get_clean();
    271        };
    272
    273        // import and process the view file
    274        $result $clean_room($file_override ?: $this->file_name$data $this->get_data());
    275
    276        // disable sanitization on objects that support it
    277        $this->unsanitize($data);
    278
    279        // return the result
    
  10. COREPATH/classes/view.php @ line 680
    675        {
    676            throw new \FuelException('You must set the file to use within your view before rendering');
    677        }
    678
    679        // combine local and global data and capture the output
    680        $return $this->process_file();
    681
    682        // restore the current language setting
    683        $this->active_language and \Config::set('language'$current_language);
    684
    685        // and the active request class
    
  11. COREPATH/classes/view.php @ line 227
    222     */
    223    public function __toString()
    224    {
    225        try
    226        {
    227            return $this->render();
    228        }
    229        catch (\Exception $e)
    230        {
    231            \Errorhandler::exception_handler($e);
    232
    
  12. COREPATH/classes/response.php @ line 382
    377     *
    378     * @return  string
    379     */
    380    public function __toString()
    381    {
    382        return (string) $this->body;
    383    }
    384}
    
  13. DOCROOT/index.php @ line 191
    186catch (HttpServerErrorException $e)
    187{
    188    $response $routerequest('_500_'$e);
    189}
    190
    191$response->body((string) $response);
    192
    193/**
    194 * -----------------------------------------------------------------------------
    195 *  Start profiling
    196 * -----------------------------------------------------------------------------
    

Prior Contents (show)