调用php函数时PHP 500内部服务器错误

时间:2015-07-26 08:40:21

标签: php chrome-gcm

我最近遇到一个问题我在我的php文件中创建了一个函数,我试图从同一个文件中调用该函数但是当我调用它时我只得到500个内部服务器错误。

function messageThem($match, $message) {


if(isset($match) & isset($message)) {
$query = "SELECT gcm FROM gcm_users";
$result = $con->query($query, MYSQLI_USE_RESULT);

$regID = array();
while($r = mysqli_fetch_array($result)) {
$regID[] = $r["gcm"];
}



$url = "https://gcm-http.googleapis.com/gcm/send";
$api = "REMOVED. API KEY MAY NOT BE SHARED";
$data = array('match' => $_POST['match'], 'message' => $_POST['message']);
$fields = array('registration_ids' => $regID,'data' => $data);
$headers = array('Authorization: key=' . $api,
             'Content-Type: application/json');



printf("np bro");

//curl connection
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

$resultCurl = curl_exec($ch);

  if ( curl_errno( $ch ))
{
    echo 'GCM error: ' . curl_error( $ch );
}

curl_close($ch);

echo $resultCurl;


}


}
messageThem("1200","message goes here");

我唯一能做到的就是内部服务器错误。但是,如果我删除该功能并运行代码,它就完美了。所以它喜欢当我想调用它时它会给我和内部服务器错误。

1 个答案:

答案 0 :(得分:2)

引发错误是因为未定义$con变量并且您在其上调用query方法 - 绝对是范围问题。 可能你有错误: Fatal error: Call to a member function query() on a non-object

所以有两种解决方案:

  1. 您必须使用
  2. global $con;

    1. 或者您必须将$con作为第三个参数传递给函数。
    2. 我假设$con是数据库连接的对象。