我的服务器出错了,
<?php
class Encryption{
private $_encryptionkey;
public function setEncryption($key){
$this->_encryptionkey = $key;
}
}
当我打电话
$enc = new Encryption();
$enc->setEncryption("abcd123");
我收到错误
PHP Fatal error: Uncaught Error: Cannot access private property Encryption::$_encryptionkey
此错误保持show event我将_encryptionkey更改为protected,但如果我更改为public,则错误消失。
我的服务器使用phalcon 3.0.3版运行PHP版本7.1.0
答案 0 :(得分:0)
Phalcon不支持PHP 7.1,因此它可能是PHP 7.1的Phalcon编译的错误
使用PHP 7.0,您将不会遇到此问题。