找不到在joomladb中插入文章的好编码

km0tfn4u  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(326)

我正在创建一个脚本,将一个旧网站迁移到joomla。在我以前的网站上,所有php脚本都是utf8格式的。还有导入脚本。
要创建文章,请执行以下操作:

$article = JTable::getInstance('content');

    $article->title            = $titre;
    $article->alias            = $alias;
    $article->introtext        = $contenu;
    $article->catid            = $idcat;
    $article->created          = JFactory::getDate()->toSQL();;
    $article->created_by_alias = 'Import';
    $article->state            = 1;
    $article->access           = 1;
    $article->metadesc           = $description;
    $article->metadata         = '{"page_title":"'.$titre.'","author":"","robots":""}';
    $article->language         = '*';

    if (!$article->check())
        print $article->getError();

    if (!$article->store(TRUE))
        print $article->getError();

在那之后一切都很好,但我还有第二次机会:

$query = $db->getQuery(true);
$query->select("id,introtext");
$query->from("#__content");
$query->where("1");
$db->setQuery((string) $query);
$messages = $db->loadObjectList();

foreach($messages as $page)
{
    $idarticle=$page->id;

    $dom = new DOMDocument;
    @$dom->loadHTML(utf8_decode($page->introtext));
    ...
    $fields = array("introtext=".$db->quote(utf8_encode($dom->saveHTML())));
    $conditions = array("id='$idarticle'");
    $query->update('#__content')->set($fields)->where($conditions);
    $db->setQuery($query);
    $result = $db->execute();
}

我试过有或没有 utf8_decode / utf8_encode 这是一样的:一些字符被替换为 ? 例如 但口音很好。

up9lanfz

up9lanfz1#

我找到了一个解决方案,不确定它是否会引起问题:在文章创建之前,用这种方法转换特殊字符:

$html=htmlentities($html,ENT_NOQUOTES|ENT_SUBSTITUTE|ENT_DISALLOWED);
$html=str_replace("&lt;","<",$html);
$html=str_replace("&gt;",">",$html);

相关问题