我在访问静态函数中的私有和公共变量时遇到问题。我知道访问静态变量来访问静态函数。
示例:
class Student{
public $name = "Rajkumar";
private $mark = 10;
static $result = "Pass";
static function Display(){
echo(self::$result);
//here how to access $name and $mark
}
}
这可能与否。
我在访问静态函数中的私有和公共变量时遇到问题。我知道访问静态变量来访问静态函数。
示例:
class Student{
public $name = "Rajkumar";
private $mark = 10;
static $result = "Pass";
static function Display(){
echo(self::$result);
//here how to access $name and $mark
}
}
这可能与否。