这段代码:
$current_user = get_currentuseinfo();
foreach ($alleds as $ed) {
$checked = (in_array($ed->ID,(array)$currenteds)) ? ' checked="checked"' : '';
$disabled = (!current_user_can('administrator') && $current_user->ID !== $ed->ID) ? ' disabled="disabled" : '';
echo '<input type="checkbox" name="currenteds[]" value="' . $ed->ID . '"' .$checked . '" '.$disabled.' /><label for="ratings[]">'.$ed->user_nicename.'</label>';
}
给我这个错误:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING
现在,我一直试图弄清楚为什么会收到此错误,但我无法弄清楚。问题可能就在echo
一线。你知道问题是什么以及我如何解决它吗?