zblog程序在做一些功能的时候,例如批量导入文件时同时发布生成文章,这时候就需要写zblog添加生成文章代码了,那么如何写zblog添加生成文章代码呢?zblog发布文章代码是什么?zblog添加生
zblog发布文章代码是什么?
zblog添加生成文章代码这是从zblog程序里找到的内核代码,使用此代码按照要求传递标题、分类、内容等关键参数,就可以实现zblog添加生成文章写入到数据库。
zblog发布文章代码是什么
$a = new Post(); $title2 = strip_tags($titleDat); $title2 = htmlspecialchars($title2); $a->LoadInfoByField('Title', $title2); if($a->ID>0){ echo '抱歉此文已存在!'; exit(); } $newTag = FormatString($titleDat, '[noscript]'); $newTag = PostArticle_CheckTagAndConvertIDtoString($titleDat); $a->CateID = ''; $a->AuthorID = 1; $a->Status = ZC_POST_STATUS_PUBLIC; $a->Type = ZC_POST_TYPE_ARTICLE; $a->Alias = ''; $a->IsTop = false; $a->IsLock = false; $a->Title = $titleDat; $a->Intro = ''; $a->Content = ''; $a->IP = ''; $a->PostTime = time(); $a->CommNums = 0; $a->ViewNums = 0; $a->Template = ''; $a->Tag = $newTag; $a->Meta = ''; $a->Save();
粉丝
0
关注
0
收藏
0