参数(私有字符串):
$this->username = 'app';
$this->password = 'passwd';
$this->service = '//local/DEV';
不起作用:
$conn = oci_connect($this->username,$this->password,$this->service);
是否有效:
$conn = oci_connect('app','passwd','//local/DEV');
为什么 oci_connect 不喜欢对象属性作为参数?使用对象属性时出现无效登录错误,但使用字符串时成功。所有这些代码都在对象的 __construct() 中。