提取Wix对象属性

时间:2016-08-08 20:40:21

标签: php

我是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" }

但这是一个奇怪的数组,我似乎无法访问

有谁能告诉我如何访问这种类型的数组?

谢谢

1 个答案:

答案 0 :(得分:1)

我挖到了Wix sdk,找到了class object。您可以使用

访问应用ID
$wix->getAppId();

如果您需要访问该秘密,请使用:

$wix->getSecret();