2013-05-17 78 views
0

我觉得这很奇怪,但我似乎无法让PHP报告错误。PHP将不会报告错误

我正在制作一个类来检查和格式化CMS以外的某些结果,以便在不必创建自定义插件(由于时间限制)的情况下实现更高的过滤能力。

我在页面顶部包含这两行。

//error_reporting(E_ALL); 
//ini_set('display_errors', '1'); 

我已经切换每个并尝试使用两个,没有效果。我的php.ini显示display_errors与html_errors相同。 error_reporting设置为1.

对于旧代码,我有它的工作原理,错误报告显示通知和错误。尽管在某些情况下我遇到了同样的问题,但问题是由于在函数外部设置变量导致无法在函数内调用该函数而无需将其作为函数参数。这就是为什么我决定改用班级来避免这个问题。

我想做一个简单的类来做到这一点,并输出结果为JSON。我的PHP并不完美,但如果我至少得到一个错误,我可以轻松地诊断出错的地方。在这种情况下,我无法让PHP甚至显示回声,更不用说任何数据/错误。我得到的只是一张纯白色的页面。这里是我正在使用的完整代码,因为我正在更新它的过程中,所以这是一团糟。

class k2JSON { 
    private $limit = ''; 
    private $featured = ''; 
    private $prefix = 'base_'; 
    private $filter_query = ''; 
    private $types = array(); 
    private $dates = array(); 
    private $build = array(); 
    private $db_arr = array(
     'name' => 'westerner_days', 
     'host' => 'localhost', 
     'user' => 'rem', 
     'pass' => '#w1n1nng' 
    ); 
    function __construct(){ 
     echo 'called constructor <br />'; 
     if(isset($_GET['limit'])){ 
      $this->limit = ' LIMIT '.$_GET['limit']; 
     } 
     if(isset($_GET['featured'])){ 
      $this->featured = " AND `featured`='".$_GET['featured']."'"; 
     } 
     $this->db = new mysqli(
      $db_arr['host'], 
      $db_arr['user'], 
      $db_arr['pass'], 
      $db_arr['name'] 
     ); 
     if(mysqli_connect_errno()){ 
      printf("Connect failed: %s\n", mysqli_connect_error()); 
      exit(); 
     } 
     $this->checkFilter(); 
     $this->checkDates(); 
     $this->checkExtra(); 
    }; 
    private function checkFilter(){ 
     if(isset($_GET['filter'])){ 
      switch($_GET['filter']){ 
       case 'entertainment': 
        $this->filter_query = "SELECT * FROM `{$this->prefix}k2_items` WHERE `catid` IN (5,6,7,8,9,10,11){$this->featured} AND `trash`='0'".$this->limit; 
        break; 
       case 'midway': 
        $this->filter_query = "SELECT * FROM `{$this->prefix}k2_items` WHERE `catid` IN (12,13,14){$this->featured} AND `trash`='0'".$this->limit; 
        break; 
       case 'off-site': 
        $this->filter_query = "SELECT * FROM `{$this->prefix}k2_items` WHERE `catid` IN (15,16,17,18){$this->featured} AND `trash`='0'".$this->limit; 
        break; 
       default: 
        $this->filter_query = "SELECT * FROM `{$this->prefix}k2_items` WHERE `catid` IN (5,6,7,8,9,10,11,12,13,14,15,16,17,18){$this->featured} AND `trash`='0'".$this->limit; 
        break; 
      } 
     }else{ 
      $this->filter_query = "SELECT * FROM `{$this->prefix}k2_items` WHERE `catid` IN (5,6,7,8,9,10,11,12,13,14,15,16,17,18){$this->featured} AND `trash`='0'".$this->limit; 
     } 
     $this->filter_result = $this->db->query($this->filter_query) or die($this->db->error.__LINE__); 
    }; 
    private function checkDates(){ 
     $this->date_query = "SELECT * FROM `{$this->prefix}k2_extra_fields` WHERE `id` IN (2,14,11) AND `published`='1'"; 
     $this->date_result = $this->db->query($this->date_query) or die($this->db->error.__LINE__); 
     while($row = $this->date_result->fetch_assoc()){ 
      $this->dates[$row['id']] = json_decode($row['value']); 
     } 
    }; 
    private function checkExtra(){ 
     $this->extra_query = "SELECT * FROM `{$this->prefix}k2_extra_fields` WHERE `published`='1'"; 
     $this->extra_result = $this->db->query($this->extra_query) or die($this->db->error.__LINE__); 
     while($row = $this->extra_result->fetch_assoc()){ 
      $this->types[$row['id']] = json_decode($row['value']); 
     } 
    }; 
    private function buildOutput($data){ 
     $compile = array(); 
     $compile['extra']= array(); 
     $compile['title'] = $data['title']; 
     $compile['featured'] = $data['featured']; 
     $compile['published'] = $data['published']; 
     $compile['desc'] = $data['introtext']; 
     $compile['link'] = 'http://'. 
      $_SERVER['HTTP_HOST']. 
      dirname($_SERVER['REQUEST_URI']).'/'. 
      (isset($_GET['filter'])? 
       $_GET['filter']: 
       in_array($data['catid'],[5,6,7,8,9,10,11])? 
        'entertainment': 
        in_array($data['catid'],[12,13,14])? 
         'midway': 
         in_array($data['catid'],[15,16,17,18])? 
          'off-site': 
          '' 
      ).'/view/item/'.$data['id'].'-'.$data['alias']; 
     $compile['type'] = $data['catid']; 
     $compile['image'] = array(
      'xsmall' => '/media/k2/items/cache/'.md5('Image'.$data['id']).'_XS.jpg', 
      'small' => '/media/k2/items/cache/'.md5('Image'.$data['id']).'_S.jpg', 
      'medium' => '/media/k2/items/cache/'.md5('Image'.$data['id']).'_M.jpg', 
      'large' => '/media/k2/items/cache/'.md5('Image'.$data['id']).'_L.jpg', 
      'xlarge' => '/media/k2/items/cache/'.md5('Image'.$data['id']).'_XL.jpg', 
     ); 
     $extra = json_decode($data['extra_fields']); 
     foreach($extra as $key=>$value){ 
      switch($extra[$key]->id){ 
       case 2: 
        if(is_array($extra[$key]->value)){ 
         $return_array = array(); 
         foreach($extra[$key]->value as $key2=>$value2){ 
          if($this->dates['2'][$extra[$key]->value[$key2]-1]->name!=null){ 
           $return_array[]=$this->dates['2'][$extra[$key]->value[$key2]-1]->name; 
          } 
         } 
         $compile['date'] = $return_array; 
        }else{ 
         $compile['date'] = $this->dates['2'][$extra[$key]->value-1]->name; 
        } 
        break; 
       case 14: 
        if(is_array($extra[$key]->value)){ 
         $return_array = array(); 
         foreach($extra[$key]->value as $key2=>$value2){ 
          if($dates['14'][$extra[$key]->value[$key2]-1]->name!=null){ 
           $return_array[]=$this->dates['14'][$extra[$key]->value[$key2]-1]->name; 
          } 
         } 
         $compile['date'] = $return_array; 
        }else{ 
         $compile['date'] = $this->dates['14'][$extra[$key]->value-1]->name; 
        } 
        break; 
       case 11: 
        if(is_array($extra[$key]->value)){ 
         $return_array = array(); 
         foreach($extra[$key]->value as $key2=>$value2){ 
          if($dates['11'][$extra[$key]->value[$key2]-1]->name!=null){ 
           $return_array[]=$this->dates['11'][$extra[$key]->value[$key2]-1]->name; 
          } 
         } 
         $compile['date'] = $return_array; 
        }else{ 
         $compile['date'] = $this->dates['11'][$extra[$key]->value-1]->name; 
        } 
        break; 
       case 1: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
       case 15: 
        if(is_array($extra[$key]->value)){ 
         $return_array = array(); 
         foreach($extra[$key]->value as $key2=>$value2){ 
          $return_array[]=$this->types['15'][$extra[$key]->value[$key2]]->name; 
         } 
         $compile['extra'][$extra[$key]->id] = $return_array; 
        }else{ 
         $compile['extra'][$extra[$key]->id] = $this->types['15'][$extra[$key]->value]->name; 
        } 
        break; 
       case 1: 
        if(is_array($extra[$key]->value)){ 
         $return_array = array(); 
         foreach($extra[$key]->value as $key2=>$value2){ 
          $return_array[]=$this->types['1'][$extra[$key]->value[$key2]]->name; 
         } 
         $compile['extra'][$extra[$key]->id] = $return_array; 
        }else{ 
         $compile['extra'][$extra[$key]->id] = $this->types['1'][$extra[$key]->value]->name; 
        } 
        break; 
       case 7: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
       case 18: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
       case 10: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
       case 4: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
       case 16: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
       case 12: 
        $compile['extra'][$extra[$key]->id] = $extra[$key]->value; 
        break; 
      } 
     } 
     return $compile; 
    }; 
    public function parse(){ 
     if($this->filter_result->num_rows > 0) { 
      while($row = $this->filter_result->fetch_assoc()) { 
       if(isset($_GET['date'])){ //date but could have type 
        $extra = json_decode($row['extra_fields']); 
        foreach($extra as $key=>$value){ 
         if($extra[$key]->id==2||$extra[$key]->id==14||$extra[$key]->id==11){ //find date extrafield 
          $check_array = array(); 
          foreach($extra[$key]->value as $key2=>$value2){ 
           $check_array[]=$dates['2'][$extra[$key]->value[$key2]-1]->name; 
          } 
          foreach($extra[$key]->value as $key2=>$value2){ 
           $check_array[]=$dates['14'][$extra[$key]->value[$key2]-1]->name; 
          } 
          foreach($extra[$key]->value as $key2=>$value2){ 
           $check_array[]=$dates['11'][$extra[$key]->value[$key2]-1]->name; 
          } 
          $compile['date'] = $check_array; 
          if(in_array($_GET['date'],$check_array)){ 
           if(isset($_GET['type'])){ //type is set 
            if($row['catid']==$_GET['type']){ 
             $this->build[]=$this->buildOutput($row); 
            } 
           }else{ //type is not set, output all values. 
            $bthis->build[]=$this->buildOutput($row); 
           } 
          } 
         } 
        } 
       }else if(isset($_GET['type'])){ //only type 
        if($row['catid']==$_GET['type']){ 
         $this->build[]=$this->buildOutput($row); 
        } 
       }else{ //no filters 
        $this->build[]=$this->buildOutput($row); 
       } 
      } 
     } 
    }; 
    public function outputResult(){ 
     print_r($this->build); 
     echo json_encode($this->build); 
    }; 
}; 
echo 'init <br />'; 
$json = new k2JSON(); 
$json->parse(); 
$json->outputResult(); 

我知道可能有一些非常明显的错误。但没有PHP错误,我无法缩小它。我希望对于有更多PHP经验的人来说,这个问题有一个明显的问题。

+0

当你说你正在包括这些行,我认为你是从他们开始删除//? – bhttoan

回答

1

你确定你收到错误了吗?

尝试,这也:

@ini_set('error_reporting', 'true'); 
error_reporting(E_ALL | E_STRICT); 

的功能可能是错误的,你写的功能,如

public function something() {}; <== 

写他们喜欢

public function something() {} 

犯规解决您的错误问题,但至少备注

+0

我已经尝试过,我仍然只是得到一个白页。是的,否则,因为我的“回声”声明应该显示正确的东西? –

+0

奇怪,因为我得到错误,当我运行这个,没有任何ini_set或error_reporting代码... 解析错误:语法错误,意外';',期待在G:\ xampp \ htdocs \ test \ index.php T_FUNCTION行37 –

+0

是的,它让我感到困惑,我觉得它可能是apache。尽管我的phpinfo显示了我所看到的适当的错误设置。 –

0

删除';'在类方法中使用方括号后,告诉我们它是否可用。

+0

我删除了所有我可以看到的,仍然是白色的页面。 –

+0

还有更多的错误,那么这1也解析错误:语法错误,意想不到的'['在第85行的G:\ xampp \ htdocs \ test \ index.php –

+0

更改数组声明,从5.4到旧方式你的PHP服务器5.4?):即行85 [5,6,7,..]阵列(5,6,7,...) – jgpATs2w

0

//error_reporting(E_ALL);

//ini_set('display_errors', '1');

退出 “//” 并删除 “;”函数声明后

+0

我曾表示,我切换他们,我的意思是我取消了他们的评论并以不同的变化评论他们进行测试。至于';'在实现功能之后,这不是最终的根本问题。这是PHP不允许页面重写error_reporting。我使用'''的原因首先是我主要是一名JavaScript程序员,并且最好避免以后压缩代码的问题。 –