大家好,我正在尝试通过我为 CKeditor 创建的自定义插件从 mysql 数据库中检索 mathml。但是由于某种原因,每当使用 mathml 插入段落标签时,我尝试创建的插件都会拒绝打开。我怀疑这与使用 htmlentities 有关。如果有人能提供一些关于在插件对话框的选择框中检索数据时如何应用 htmlentities 的见解,我将不胜感激。我实际上想知道如何在项目中使用 htmlentities 函数:
items:[
<?php $i = 1;
while($row = mysql_fetch_assoc($queryResource))
{
if($i == 1) {
echo "['$row[expressionname]','$row[mathexpression]']";
$i = null;
}
else
echo "['$row[expressionname]','$row[mathexpression]']";
}
?>],
commit : function( data )
{
data.equations = this.getValue();
}
}]