我知道这是一个非常普通的错误,但我得到了一个:
(!)解析错误:语法错误,意外' openFile' (T_STRING),期望第13行//文件中的变量(T_VARIABLE)
这是我的相关代码:
class Dictionary{
private $fileHandler;
const FILESRC = 'resources/dictionary.txt';
//Just in case I want to extend class to write dictionary;
const FILEMODE = 'r';
const MAXLINES = 1024;
protected openFile(){
if(!isset($this->$fileHandler))
$this->$fileHandler = fopen(self::FILESRC, self::FILEMODE);
}
}
我似乎无法找到解决方案,尝试了一些类似的问题,但错误太一般了 我还看了PHP Parse/Syntax Errors; and How to solve them?
任何建议都需要帮助。
提前致谢