NOTICE: Undefined index: 4246 in D:\wwwroot\shangpu\wwwroot\protected\cache\template\af85bdfb7c796ea80a38b0e141f58920.1571989101.findshop_view.html.php on line 25

549.          case E_NOTICE$msg "NOTICE"; break;
550.          case E_STRICT$msg "STRICT"; break;
551.          case 8192$msg "DEPRECATED"; break;
552.          default : $msg "Unknown Error Type";
553.      }
554.      err("$msg$errstr in $errfile on line $errline");
555.  }
556. 
557.  function err($msg)
558.  {
559.      $traces debug_backtrace();
20.          <div class="bf5">
21.              <div class="wrap">
22.                  <div class="rentnews">
23.                      <h3><?php echo htmlspecialchars($info['subject'], ENT_QUOTES"UTF-8"); ?></h3>
24.                      <div class="live">
25.                          <span><b class="col"><?php echo htmlspecialchars($area_list[$info['area_id']], ENT_QUOTES"UTF-8"); ?></b><strong>期望区域</strong></span>
26.                          <span><b class="col"><?php echo htmlspecialchars($info['content'], ENT_QUOTES"UTF-8"); ?></b><strong>要求</strong></span>
27.                      </div>
28.                      <div class="live">
29.                          <span><b><?php echo htmlspecialchars($info['measure'], ENT_QUOTES"UTF-8"); ?></b><strong>期望面积</strong></span>
30.                          <span><b><?php if ($info['price']>0) : ?> <?php echo htmlspecialchars($info['price'], ENT_QUOTES"UTF-8"); ?>元/月 <?php else : ?>面议<?php endif; ?></b><strong>期望租金</strong></span>
421.          $complied_file $this->compile($tempalte_name);
422.          
423.          @ob_start();
424.          extract($this->template_valsEXTR_SKIP);
425.          $_view_obj = & $this;
426.          include $complied_file;
427.          
428.          return ob_get_clean();
429.      
430.      
431.      public function assign($mixed$val '')
174.      
175.      public function display($tpl_name)
176.      {
177.          if(!$this->_v$this->_v = new View(VIEW_DIRAPP_DIR.DS.'protected'.DS.'cache'.DS.'template');
178.          $this->_v->assign($this->_data);
179.          echo $this->_v->render($tpl_name);
180.      }
181.  }
182. 
183.  class Model
184.  {
42.          $this->seller_config $this->getSeller();
43.      }
44.      
45.      protected function compiler($tpl)
46.      {
47.          $this->display('mobile'.DS.$GLOBALS['cfg']['enabled_theme'].DS.$tpl);
48.      }
49. 
50.      protected function is_logined($jump TRUE)
51.      {
52.          if (empty($_SESSION['USER']['USER_ID']))
57.              $cate $goods_cate_model->find(array('cate_id'=>$info['cate_id']));
58.              $info['cate_name'] = $cate['cate_name'];
59.              $this->info $info;
60.              $this->area_list cdarea();
61.              $this->curr 4;
62.              $this->compiler('findshop_view.html');
63.          }else
64.          {
65.              jump(url('main''404'));
66.          }
67.      }
82.  $action_name 'action_'.$__action;
83.  if(!class_exists($controller_nametrue)) err("Err: Controller '$controller_name' is not exists!");
84.  $controller_obj = new $controller_name();
85.  if(!method_exists($controller_obj$action_name)) err("Err: Method '$action_name' of '$controller_name' is not exists!");
86. 
87.  $controller_obj->$action_name();
88. 
89.  function url($c 'main'$a 'index'$param = array()) {
90.      if(is_array($c)) {
91.          $param $c;
92.          if(isset($param['m'])) $m $param['m']; unset($param['m']);
1.  <?php
2.  define('APP_DIR'realpath('./'));
3.  defined('DS') or define('DS'DIRECTORY_SEPARATOR);
4.  define('INCL_DIR'APP_DIR.DS.'protected'.DS.'include');
5.  require(INCL_DIR.DS.'core.php');