我是Wix的新手,我正在使用桌面应用。
当我创建一个新的Wix对象时:
$wix = new Wix()
我明白了:
object(Wix)#8 (2) { ["appId":"Wix":private]=> string(36) "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ["secret":"Wix":private]=> string(36) "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" }
我想提取appID,因为它是私有财产,如果我尝试访问它,我会收到此错误:
Fatal error: Cannot access private property Wix::$appId
所以我尝试将对象转换为数组,现在我得到了这个:
array(2) { ["WixappId"]=> string(36) "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ["Wixsecret"]=> string(36) "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" }
但这是一个奇怪的数组,我似乎无法访问
有谁能告诉我如何访问这种类型的数组?
谢谢
答案 0 :(得分:1)