NOTICE: Undefined index: 0 in D:\wwwroot\shangpu\wwwroot\protected\cache\template\af85bdfb7c796ea80a38b0e141f58920.1571989101.findshop_view.html.php on line 25
- D:\wwwroot\shangpu\wwwroot\protected\include\core.php on line 554
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.
555.
err("$msg: $errstr in $errfile on line $errline");
}
556.
557.
function err($msg)
558.
{
559.
$traces = debug_backtrace();
- D:\wwwroot\shangpu\wwwroot\protected\cache\template\af85bdfb7c796ea80a38b0e141f58920.1571989101.findshop_view.html.php on line 25
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.
26.
<span><b class="col"><?php echo htmlspecialchars($area_list[$info['area_id']], ENT_QUOTES, "UTF-8"); ?></b><strong>期望区域</strong></span>
<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>
- D:\wwwroot\shangpu\wwwroot\protected\include\core.php on line 426
421.
$complied_file = $this->compile($tempalte_name);
422.
423.
@ob_start();
424.
extract($this->template_vals, EXTR_SKIP);
425.
$_view_obj = & $this;
426.
427.
include $complied_file;
428.
return ob_get_clean();
429.
}
430.
431.
public function assign($mixed, $val = '')
- D:\wwwroot\shangpu\wwwroot\protected\include\core.php on line 179
174.
175.
public function display($tpl_name)
176.
{
177.
if(!$this->_v) $this->_v = new View(VIEW_DIR, APP_DIR.DS.'protected'.DS.'cache'.DS.'template');
178.
$this->_v->assign($this->_data);
179.
180.
echo $this->_v->render($tpl_name);
}
181.
}
182.
183.
class Model
184.
{
- D:\wwwroot\shangpu\wwwroot\protected\controller\mobile\general_controller.php on line 47
42.
$this->seller_config = $this->getSeller();
43.
}
44.
45.
protected function compiler($tpl)
46.
{
47.
48.
$this->display('mobile'.DS.$GLOBALS['cfg']['enabled_theme'].DS.$tpl);
}
49.
50.
protected function is_logined($jump = TRUE)
51.
{
52.
if (empty($_SESSION['USER']['USER_ID']))
- D:\wwwroot\shangpu\wwwroot\protected\controller\mobile\findshop_controller.php on line 62
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.
63.
$this->compiler('findshop_view.html');
}else
64.
{
65.
jump(url('main', '404'));
66.
}
67.
}
- D:\wwwroot\shangpu\wwwroot\protected\include\core.php on line 87
82.
$action_name = 'action_'.$__action;
83.
if(!class_exists($controller_name, true)) 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.
88.
$controller_obj->$action_name();
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']);
- D:\wwwroot\shangpu\wwwroot\index.php on line 5
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');