1

我正在使用Blackboard-Web-Services-PHP-Library,当我进行如下调用时(根据上一个问题中的示例:Blackboard SOAP web service php),BB 的 web 服务为每个创建一个列列数组中的键/值对,并返回新列 ID 的数组。这些新列都没有任何所需的特性。有什么建议么?

$params = array();
$params['courseId'] = '_174_1';
$params['columns'] = array(
  'columnName' => 'testing',
  'possible' => "100.0",
  "scorable"=> "true",
  "showStatsToStudent"=> "true",
  "visible"=> "true",
   "visibleInBook"=> "true",
 );

$id = $blackboard->Gradebook( "saveColumns", $params );

print_r($id) 输出:

Array
(
  [0] => _441_1
  [1] => _442_1
  [2] => _443_1
  [3] => _444_1
  [4] => _445_1
  [5] => _446_1
)
4

0 回答 0