我如何构建以下字符串的数组:
$scope = "calls:full,departments:full,employees:full,companies:full,stages:full,accounts:full,resources:full,products:full,reports:full";
像这样表示它:
$scope = array(
'calls' => full,
'departments' => full,
'employees' => full,
.... and so on >>
);