次の文字列の配列を作成するにはどうすればよいですか:
$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 >>
);