0

これは奇妙に感じますが、php にエラーを報告させることができないようです。

カスタムプラグインを作成しなくても (時間の制約により) より優れたフィルター機能を使用できるように、CMS の外部でいくつかの結果をチェックしてフォーマットするクラスを作成しています。

この 2 行をページの上部に含めています。

//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の経験が豊富な人にとって、この問題が明らかに修正されることを願っています。

4

3 に答える 3

1

エラーが発生していると確信していますか?

これも試してください:

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

あなたの関数は間違っているかもしれません

public function something() {}; <==

それらを次のように書きます

public function something() {} 

エラーの問題は解決しませんが、少なくともメモ

于 2013-05-17T20:10:49.097 に答える
0

「//」を終了します

//error_reporting(E_ALL);

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

「;」を削除します 関数宣言の後

于 2013-05-17T20:50:25.450 に答える
0

「;」を削除します メソッドの後は、クラス メソッド内に括弧を付けて、それが機能するかどうかを教えてください。

于 2013-05-17T20:26:20.247 に答える