function imageHolder($id){
$category = get_the_category($id);
$class = \'"category-\' . strtolower($category[0]->cat_name) . \'"\';
print <<<HTML
<div class=$class>
This is a Test
</div>
HTML;
}
imageHolder(\'1\');
请注意在herdeoc语法中使用“/n”或“/r”符号(它们可能会导致函数无法正常工作)。