Reputation: 31
I am trying to use code as below in my php file.
global $w;
func();
function func(){
$data = getAllNumbers();
$numbers = $data["data"];
$error = $data["error"];
for($i = 0; $i < count($numbers); $i++) {
$w->sendPresenceSubscription($numbers[$i]);
}
}
and in my whtasprot.class.php have function like below
public function sendPresenceSubscription($to)
{
$node = new ProtocolNode('presence', ['type' => 'subscribe', 'to' => $this->getJID($to)], null, '');
$this->sendNode($node);
}
but I am getting error like below. I am unable to fix it as well do not know why its coming. If I remove function code and use direct it, its working fine.
Uncaught Error: Call to a member function sendPresenceSubscription() on null in
index.php
<?php
ini_set('memory_limit', '-1');
require_once('../src/whatsprot.class.php');
require_once('api.php');
require_once('storeStatus.php');
$starttime = time();
function onPresenceAvailable($mynumber, $from)
{
storeStatus(explode("@", $from)[0], 1);
echo "Online: ".$from."\n";
}
function onPresenceUnavailable($mynumber, $from)
{
storeStatus(explode("@", $from)[0], 0);
echo "Offline: ".$from."\n";
}
$debug = false;
$nickname = 'Test WA';
$username = '00000000';
$password = '00000000';
global $w;
$w = new WhatsProt($username, $nickname, $debug);
$w->eventManager()->bind('onPresenceAvailable', 'onPresenceAvailable');
$w->eventManager()->bind('onPresenceUnavailable', 'onPresenceUnavailable');
try {
$w->connect();
} catch (Exception $e) {
echo 'Connection error: ' . $e->getMessage();
exit(0);
}
try {
$w->loginWithPassword($password);
} catch (Exception $e) {
echo 'Login error: ' . $e->getMessage();
exit(0);
}
func();
function func(){
$data = getAllNumbers();
$numbers = $data["data"];
$error = $data["error"];
for($i = 0; $i < count($numbers); $i++) {
$w->sendPresenceSubscription($numbers[$i]);
}
}
while (1) {
try{
$w->pollMessage();
if(time()-$starttime > 14400) {
break;
}
}
catch (Exception $e) {
}
}
$w->disconnect();
?>
I am getting error on index.php(51): func(). can anyone please suggest me whats wrong in this? Thanks
Upvotes: 0
Views: 750
Reputation: 419
declare global $w
inside your func function.
something like:
function funct() {
global $w;
//the rest of codes here
}
Upvotes: 1