我正在尝试使用 Tin Can PHP 库从 LRS 记录中提取演员代理的名称。我只有此人的 mbox 值(电子邮件地址),因此我的检索尝试如下进行:
$actor = new TinCan\Agent();
$actor
->setMbox('mailto:bob@downe.com');
// return raw statement
$retrieve = $lrs->queryStatements(['agent' => $actor]);
如果我打印出的值,$retrieve
我会得到以下原始语句(为简洁起见被截断):
TinCan\LRSResponse Object (
[success] => 1
[content] => TinCan\StatementsResult Object
(
[statements:protected] => Array
(
[0] => TinCan\Statement Object
(
[id:protected] => 4c707377-384d-4547-a858-61696b386b6d
[stored:protected] => 2016-10-24T15:57:43.358Z
[authority:protected] => TinCan\Agent Object
(
[objectType:protected] => Agent
[name:protected] => Grant
[mbox:protected] =>
[mbox_sha1sum:protected] =>
[openid:protected] =>
[account:protected] => TinCan\AgentAccount Object
(
[name:protected] => ###
[homePage:protected] => http://cloud.scorm.com/
)
)
[version:protected] => 1.0.0
[attachments:protected] => Array
(
)
[actor:protected] => TinCan\Agent Object
(
[objectType:protected] => Agent
[name:protected] => Bob Downe
[mbox:protected] => mailto:bob@downe.com
[mbox_sha1sum:protected] =>
[openid:protected] =>
[account:protected] =>
)
然后我尝试从原始语句中提取名称,如下所示:
// take content from raw statements using getStatements() method
$further_output = $retrieve->content->getStatements();
这会产生一个 Statement 类的对象数组,在本例中是一个包含一个值的数组。
然后我必须以某种方式从数组中取出对象,以便访问用于提取我想要的信息的方法。这就是我的做法:
// Get actor out of object
$extracted = $further_output[0]->getActor()->getName();
echo "<p>$extracted</p>"; // produces 'Bob Downe'
这似乎非常低效,我相信一定有更好的方法来做到这一点。
我有两个问题:
提取我想要的信息的最有效方法是什么?
为什么原始语句为每个属性显示“受保护”,例如 [statements:protected]、[id:protected]、[stored:protected] 等?
我研究了这些相关链接,但它们没有解决我的问题:
使用 TinCan API 从 Learning Locker LRS 获取语句
如有任何帮助,我将不胜感激。