I want to use variable value from one function into another function of same class. I am using abstract class
using which I am declaring variable as global
indirectly. I can not declare variable as global
in the class. My demo code is as follows:
<?php
abstract class abc
{
protected $te;
}
class test extends abc
{
public function team()
{
$te = 5;
$this->te += 100;
}
public function tee()
{
$tee = 51;
return $this->te;
}
}
$obj = new test();
echo $obj->tee();
//echo test::tee();
?>
Is this possible that I can echo 105 as answer there?
My main motive is I want to learn that how to get variable value from one function into another using without declaring that global in the same class Please let me know Is this possible OR I need to delete my question ?
-- edit: to make at least some use of the abstract "feature":
-- edi2: since you've asked whether you must invoke team (and then deleted that comment):
So, yes, it has to be invoked somewhere. But depending on what you're trying to achieve there are numerous ways to do so.