欢迎光临
我们一直在努力

怎么禁止使用网络图片?

建站超值云服务器,限时71元/月
public function __construct($para = array()) {
                if(!empty($para)) {
                        $this->_table = $para['table'];
                        $this->_pk = $para['pk'];
                }
                if(isset($this->_pre_cache_key) && (($ttl = getglobal('setting/memory/'.$this->_table)) !== null || ($ttl = $this->_cache_ttl) !== null) && memory('check')) {
                        $this->_cache_ttl = $ttl;
                        $this->_allowmem = true;
                }
        $this->repair();//解决表是否崩溃,新加进去的代码
                $this->_init_extend();
                parent::__construct();
        }
    //解决表是否崩溃,新加进去的一个自己检查是否需要修复的代码
        public function repair() {
      $query1=DB::query('CHECK TABLE '.DB::table($this->_table));
          $checkresult =mysql_fetch_array($query1, MYSQL_ASSOC);
      //echo(DB::table($this->_table));
          //exit;                                
          if($checkresult['Msg_text'] != 'OK') {
          DB::query('REPAIR TABLE '.DB::table($this->_table));
                 }
                
        }


赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 怎么禁止使用网络图片?
分享到: 更多 (0)