NOTICE: Undefined index: name in /www/users/HA611860/WEB/protected/tmp/784030ebbcc5c6194355c2971ad3784f.1647488228.img.html.php on line 27

506.      $msg "ERROR";
507.      if($errno == E_WARNING)$msg "WARNING";
508.      if($errno == E_NOTICE)$msg "NOTICE";
509.      if($errno == E_STRICT)$msg "STRICT";
510.      if($errno == 8192)$msg "DEPRECATED";
511.      err("$msg$errstr in $errfile on line $errline");
512.  }
513.  function err($msg){
514.      $msg htmlspecialchars($msg);
515.      $traces debug_backtrace();
516.      if(!empty($GLOBALS['err_handler'])){
22.      <div class="news-cle">
23. 
24.          <!-- 新闻标题 -->
25. 
26.          <div class="xwbt">
27.              <h3><?php echo htmlspecialchars($img['name'], ENT_QUOTES"UTF-8"); ?></h3>
28.              <div class="csa">
29.                  <ul>
30.                      <li>
31.                          <p>来源:<?php echo htmlspecialchars($img['author'], ENT_QUOTES"UTF-8"); ?></p>
32.                      </li>
99.                  </div>
100.              </div>
101.          </div>
102.      </div>
103.  </div>
104.  <?php include $_view_obj->compile($__template_file); ?>
105.  <div class="footer wow">
106. 
107.      <div class="fotwrap">
108. 
109.          <div class="pull-left" id="ftzc">
383.          $complied_file $this->compile($tempalte_name);
384.          
385.          @ob_start();
386.          extract($this->template_valsEXTR_SKIP);
387.          $_view_obj = & $this;
388.          include $complied_file;
389.          
390.          return ob_get_clean();
391.      
392.      
393.      public function assign($mixed$val ''){
196.          $this->_auto_display false;
197.          
198.          if($return){
199.              return $this->_v->render($tpl_name);
200.          }else{
201.              echo $this->_v->render($tpl_name);
202.          }
203.      }
204.  }
205. 
206.  class Model{
194.          $v['create_time'] = date('Y-m-d H:i:s'$v['create_time']);
195.          $this->prv $img->find(['id < :id'':id' => $id], null'id, name');
196.          $this->nxt $img->find(['id > :id'':id' => $id], null'id, name');
197.          $this->img $v;
198. 
199.          $this->display($this->client.'/img.html');
200.      }
201.      function actionProduces()
202.      {
203.          $page arg('p'1);
204.          $produce = new Model('produce');
79.  if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
80.  if(!class_exists($controller_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
81.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
82. 
83.  $controller_obj = new $controller_name();
84.  $controller_obj->$action_name();
85. 
86.  if($controller_obj->_auto_display){
87.      $auto_tpl_name = (empty($__module) ? '' $__module.DS).$__controller.'_'.$__action.'.html';
88.      if(file_exists(APP_DIR.DS.'protected'.DS.'view'.DS.$auto_tpl_name))$controller_obj->display($auto_tpl_name);
89.  }
1.  <?php
2.  session_start();
3.  define('APP_DIR'realpath('./'));
4.  require(APP_DIR.'/protected/lib/speed.php');