在前段中包括尖括号 时间:2013-03-27 作者:David Williams 我试图在pre标记之间发布一些java代码,但尖括号被删除了。例如:private HashMap<String, HashMap<String, Integer>> featureCounts; 成为private HashMap> featureCounts; 有没有办法呈现实际的代码?此外,我不是php开发人员或wordpress专家,因此修改底层php将不是首选的解决方案。有没有办法只用编辑器就可以做到这一点? 2 个回复 SO网友:Marty 您可以尝试将代码添加到字符串中,然后使用php函数htmlspecialchars()$thecode = "private HashMap<String, HashMap<String, Integer>> featureCounts;\\n"; $thecode.= "2nd line of code\\n"; $thecode.= "3rd line of code\\n"; $thecode.= "4th line of code\\n"; thetrim() 函数将删除开头的所有空格(&M);字符串的结尾。<pre><?php echo trim(htmlspecialchars($thecode));?></pre> 希望这有帮助。 SO网友:Pat J 如果您只是想在页面或帖子中显示它们,可以尝试使用它们的角色实体。在编辑器的文本视图中,键入< 而不是< 和> 而不是>.因此,例如,在编辑器的文本视图(而非视觉模式)中,您可以键入:<pre> private HashMap<String, HashMap<String, Integer>> featureCounts; </pre> 这应该可以做到。 结束 文章导航