gpt4 book ai didi

php - PHP将不会报告错误

转载 作者:行者123 更新时间:2023-12-03 08:33:29 26 4
gpt4 key购买 nike

我觉得这很奇怪,但是我似乎无法让php报告错误。

我正在制作一个类,以检查CMS外部的某些结果并设置其格式,以允许更大的过滤功能而不必创建自定义插件(由于时间限制)。

我在页面顶部包括了这两行。

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

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

对于较旧的代码,我可以使用它,并且错误报告会显示通知和错误。尽管在某些情况下确实遇到了相同的问题,但是该问题是由于在函数外部设置变量导致无法在不将其作为函数参数的情况下在函数内调用。这就是为什么我决定切换到类(class)以避免这个问题的原因。

我试图做一个简单的类来做到这一点,并将结果输出为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经验的人有一个明显的解决方法。

最佳答案

您确定会遇到错误吗?

也尝试一下:

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

您的函数可能是错误的,您编写的函数如下
public function something() {}; <==

写像
public function something() {} 

不能解决您的错误问题,但至少要注意

关于php - PHP将不会报告错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16617048/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com