我有一个GCM
类,其中包含send_notification函数。在另一个类Demand.php
中,我尝试使用send_notification函数。所以我在Demand.php
中有一个构造函数,它指向我的GCM
类,如下所示:
$gcm = new GCM();
此$gcm
变量用于该类中的函数,如下所示:
$result = $gcm->send_notification($registatoin_ids, $message);
这就是我收到错误的地方:
<br />n<b>Fatal error</b>: Call to a member function send_notification() on a non-object in..
我搜索了这个问题并发现问题是$gcm
为空,这就是为什么它什么都没有调用。 当我把
$gcm = new GCM();
在我的功能中,它工作正常。但是没有别的办法吗?我的意思是,仅仅通过在$gcm
的构造函数中创建Demand.php
来不行吗?
以下是我所指的部分:
function __construct() {
require_once 'GCM.php';
require_once 'DB_Connect.php';
require_once 'DB_Functions.php';
// connecting to database
$this->db = new DB_Connect();
$this->db->connect();
$gcm = new GCM();
$df = new DB_Functions();
}
// destructor
function __destruct() {
}
public function getDistance($uuid, $name, $distance, $latstart, $lonstart, $latend, $lonend, $gcm_regId) {
$user_new = array ("$uuid", "$name", "$distance","$latstart", "$lonstart", "$latend", "$lonend","$gcm_regId");
$query = sprintf("SELECT uid, distance,latstart, lonstart, latend, lonend, gcm_regid, name FROM user_demand WHERE latstart='%s' AND lonstart='%s'",
mysql_real_escape_string($latstart),
mysql_real_escape_string($lonstart));
$user = mysql_query($query);
$no_of_rows = mysql_num_rows($user);
while($user_old = mysql_fetch_assoc($user))
{
$djson = $this->findDistance($latend,$lonend,$user_old["latend"],$user_old["lonend"] );
if ($user_old["distance"]+$distance>=$djson) {
$match = mysql_query("INSERT INTO matched_users(gcm_a, gcm_b, name_a, name_b) VALUES(".$user_old['gcm_regid'].",".$user_new['gcm_regId'].",".$user_old['name'].",".$user_new['name'].")");
$registatoin_ids = array($gcm_regId);
$message = array("var" => $name);
$result = $gcm->send_notification($registatoin_ids, $message);
}
}
}
答案 0 :(得分:9)
如果将$gcm = new GCM();
放在Demand类的构造函数中,则变量$gcm
将仅在构造函数方法中可用。
如果您希望能够在整个Demand类中访问$gcm
变量,则需要将其设置为类的属性,如下所示:
class Demand()
{
/**
* Declare the variable as a property of the class here
*/
public $gcm;
...
function __construct()
{
...
$this->gcm = new GCM();
...
}
function myFunction()
{
...
// You can access the GCM class now in any other method in Demand class like so:
$result = $this->gcm->send_notification($registatoin_ids, $message);
...
}
...
}
答案 1 :(得分:3)
gcm仅在构造函数的范围内可用,除非您将其初始化为实例变量。
class Demand
{
private $_gcm;
function __construct()
{
$this->_gcm = new GCM();
}
function youWantToUseGcmIn()
{
$this->_gcm->send_notification(.....); // access it like this
}
}
答案 2 :(得分:0)
在对象构造函数中创建$ gcm,然后在同一个类中的其他方法中使用它?那你就不是正确存放的。你必须这样做:
class X {
function constructor() {
$this->gcm = new GCM();
}
function other_method() {
$this->gcm->send_notification(...);
}
}
如果你有
function constructor() {
$gcm = new GCM(); <-- this is just a temporary local variable.
}
你所做的只是在构造函数中创建一个局部变量,一旦构造函数返回就会被销毁。将新对象保存在$ this-&gt; gcm中会将其保存在包含对象中,并使其可用于其他方法。
答案 3 :(得分:0)
这意味着$gcm
不是一个对象,可能它在某些情况下是NULL或false(没有找到),因为它不可访问。超出范围