我必须这样做:
$sourceElement['description'] = htmlspecialchars_decode($sourceElement['description']);
我想避免重复提及变量名。我试过了:
htmlspecialchars_decode(&$sourceElement['description']);
和
call_user_func('htmlspecialchars_decode', &$sourceElement['description']);
那没有用。这在PHP中可能吗?在变量上调用函数?