/web/wwtour.php
where('id', 3);
$artrow = $db->getone($csql);
if (!is_array($artrow)) {
echo "单页不存在";
} else {
$content = $artrow['content'];
unset($artrow['content']);
clog($artrow);
$csql = new \ciy\sql('www_seoword');
$csql->where('isuse', 1);
$seowordrows = $db->get($csql);
echo \web\cwebcomon::www_convertseoword($seowordrows, \ciy\web::markdown_convert($content), $artrow['keys']);
}
?>