1
我想知道爲什麼以下行會導致錯誤。 doSomething()
從另一個PHP文件中調用。訪問PHP中的類變量
class MyClass
{
private $word;
public function __construct()
{
$this->word='snuffy';
}
public function doSomething($email)
{
echo('word:');
echo($this->word); //ERROR: Using $this when not in object context
}
}