Notice!

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

DOCROOT/print/rent_detail.php @ line 144

139        <th width="20%" align="left">物件種目</th>
140        <td><?php echo Model_Contentrenttype::find($rent->contentrenttype_id)->value?></td>
141    </tr>
142    <tr>
143        <th width="20%" align="left">方位</th>
144        <td><?php echo Model_Rent::getDirections()[$rent->direction]?></td>
145        <th width="20%" align="left">構造</th>
146        <td><?php echo $rent['construction'?></td>
147    </tr>
148    <tr>
149        <th width="20%" align="left">建物階数</th>

Backtrace

  1. COREPATH/bootstrap.php @ line 109
    104        include COREPATH.'classes/error.php';
    105        class_alias('\Fuel\Core\Error''Error');
    106        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    107    }
    108
    109    return \Error::error_handler($severity$message$filepath$line);
    110});
    111
    112function setup_autoloader()
    113{
    114    \Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. DOCROOT/print/rent_detail.php @ line 144
    139        <th width="20%" align="left">物件種目</th>
    140        <td><?php echo Model_Contentrenttype::find($rent->contentrenttype_id)->value?></td>
    141    </tr>
    142    <tr>
    143        <th width="20%" align="left">方位</th>
    144        <td><?php echo Model_Rent::getDirections()[$rent->direction]?></td>
    145        <th width="20%" align="left">構造</th>
    146        <td><?php echo $rent['construction'?></td>
    147    </tr>
    148    <tr>
    149        <th width="20%" align="left">建物階数</th>
    
  3. COREPATH/classes/view.php @ line 238
    233            ob_start();
    234
    235            try
    236            {
    237                // Load the view within the current scope
    238                include $__file_name;
    239            }
    240            catch (\Exception $e)
    241            {
    242                // Delete the output buffer
    243                ob_end_clean();
    
  4. COREPATH/classes/view.php @ line 252
    247            }
    248
    249            // Get the captured output and close the buffer
    250            return ob_get_clean();
    251        };
    252        return $clean_room($file_override ?: $this->file_name$this->get_data());
    253    }
    254
    255    /**
    256     Retrieves all the databoth local and global.  It filters the data if
    257     necessary.
    
  5. COREPATH/classes/view.php @ line 589
    584        {
    585            throw new \FuelException('You must set the file to use within your view before rendering');
    586        }
    587
    588        // combine local and global data and capture the output
    589        $return $this->process_file();
    590
    591        // restore the current language setting
    592        $this->active_language and \Config::set('language'$current_language);
    593
    594        // and the active request class
    
  6. COREPATH/classes/view.php @ line 205
    200     */
    201    public function __toString()
    202    {
    203        try
    204        {
    205            return $this->render();
    206        }
    207        catch (\Exception $e)
    208        {
    209            \Error::exception_handler($e);
    210
    
  7. COREPATH/classes/response.php @ line 362
    357     *
    358     * @return  string
    359     */
    360    public function __toString()
    361    {
    362        return (string) $this->body;
    363    }
    364}
    
  8. DOCROOT/fuel.php @ line 109
    104    $response $routerequest('_500_'$e);
    105}
    106
    107// This will add the execution time and memory usage to the output.
    108// Comment this out if you don't use it.
    109$response->body((string) $response);
    110if (strpos($response->body(), '{exec_time}') !== false or strpos($response->body(), '{mem_usage}') !== false)
    111{
    112    $bm Profiler::app_total();
    113    $response->body(
    114        str_replace(