我收到以下错误 Parse error: syntax error, unexpected T_VARIABLE in path /queries.php on line 92
因为数组$_queryArray
:
private $_queryA = "";
etc...
private $_queryV = "";
private $_queryArray = array( 'A' => $this->_queryA, //<= line 92 of my code
'B' => $this->_queryB,
'C' => $this->_queryC,
'D' => $this->_queryD,
'E' => $this->_queryE,
'F' => $this->_queryF,
'G' => $this->_queryG,
'H' => $this->_queryH,
'I' => $this->_queryI,
'J' => $this->_queryJ,
'K' => $this->_queryK,
'L' => $this->_queryL,
'M' => $this->_queryM,
'N' => $this->_queryN,
'O' => $this->_queryO,
'P' => $this->_queryP,
'Q' => $this->_queryQ,
'R' => $this->_queryR,
'S' => $this->_queryS,
'T' => $this->_queryT,
'U' => $this->_queryU,
'V' => $this->_queryV
);
我的填充方式有问题吗$_queryArray ?
谢谢 !