我最近有一个问题,我在我的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");
我从这实现的唯一的事情是一个内部服务器错误。但是如果我去掉这个函数,只运行代码,它就能完美地工作。所以当我想调用它时它会给我一个内部服务器错误
由于$con
变量未定义而引发错误,并且您在其上调用query
方法-绝对是作用域问题。可能你出错了:Fatal error: Call to a member function query() on a non-object
所以有两个解决方案:
- 必须使用
global $con;
- 或者您必须将
$con
作为第三个参数传递给函数。
我假设$con
在这里是db连接的对象