我正在尝试使用键访问数组值。我的代码工作正常,除非密钥中有注册商标。我该如何解决这个问题?
$map = array(
'Education'=>'643',
'STORMS®'=>'644',
);
print $csv_line[$i]; // prints STORMS®
print $map[$csv_line[$i]]; // prints nothing
print $map['STORMS®']; // prints the value I need