迅睿CMS框架是一款PHP8高性能·簡單易用的CMS開源開發(fā)框架,基于MIT開源許可協(xié)議發(fā)布,免費且不限制商業(yè)使用,是免費開源的產品,以萬端互聯(lián)為設計理念,支持的微信公眾號、小程序、APP客戶端、移動端網(wǎng)站、PC網(wǎng)站等多終端式管理系統(tǒng)。
聯(lián)系官方銷售客服
1835022288
028-61286886
火車頭采集接口文件應該怎么寫,實現(xiàn)遠程圖片本地化,thumb 單文件圖片字段和xinwentupian多文件字段,并且讓多文件字段按采集順序入庫排序。
請高手指點,謝謝
<?php $this->_module_init('news'); // news 是模塊目錄 if ($_GET['action'] == 'category') { // 顯示欄目 foreach ($this->module['category'] as $t) { if ($t['child'] == 0 && $t['tid'] == 1) { echo '<h1>'.$t['name'].'<=>'.$t['id'].'</h1>'.PHP_EOL; } } } else { // 入庫數(shù)據(jù) $data = $_REQUEST; // 發(fā)布者id 1 $data['uid'] = 1; // 發(fā)布者賬號 admin $data['author'] = 'admin'; // 主表字段 $fields[1] = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR)); $cache = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR.'_category_data')); $cache && $fields[1] = array_merge($fields[1], $cache); // 附表字段 $fields[0] = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR.'_data_0')); $cache = $this->get_cache('table-'.SITE_ID, $this->content_model->dbprefix(SITE_ID.'_'.MOD_DIR.'_category_data_0')); $cache && $fields[0] = array_merge($fields[0], $cache); // 去重復 $fields[0] = array_unique($fields[0]); $fields[1] = array_unique($fields[1]); $save = []; // 主表附表歸類 foreach ($fields as $ismain => $field) { foreach ($field as $name) { isset($data[$name]) && $save[$ismain][$name] = $data[$name]; } } if (!$data['catid']) { exit('欄目為空'); } $save[1]['uid'] = $save[0]['uid'] = $data['uid']; $save[1]['catid'] = $save[0]['catid'] = $data['catid']; $value = $save[0]['content']; if (preg_match_all("/(src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|png))\\2/i", $value, $imgs)) { foreach ($imgs[3] as $img) { if (strpos($img, '/api/ueditor/') !== false || strpos($img, '/api/umeditor/') !== false) { continue; } // 下載圖片 if (strpos($img, 'http') === 0) { // 正常下載 // 判斷域名白名單 $arr = parse_url($img); $domain = $arr['host']; if ($domain) { $sites = WRITEPATH.'config/domain_site.php'; if (isset($sites[$domain])) { // 過濾站點域名 } elseif (strpos(SYS_UPLOAD_URL, $domain) !== false) { // 過濾附件白名單 } else { $zj = 0; $remote = \Phpcmf\Service::C()->get_cache('attachment'); if ($remote) { foreach ($remote as $t) { if (strpos($t['url'], $domain) !== false) { $zj = 1; break; } } } /* if ($zj == 0) { // 可以下載文件 // 同步模式 // 下載遠程文件 $rt = \Phpcmf\Service::L('upload')->down_file([ 'url' => $img, 'attachment' => \Phpcmf\Service::M('Attachment')->get_attach_info(intval($field['content']['setting']['option']['attachment'])), ]); if ($rt['code']) { $att = \Phpcmf\Service::M('Attachment')->save_data($rt['data'], 'ueditor_down_img'); if ($att['code']) { // 歸檔成功 $value = str_replace($img, $rt['data']['url'], $value); $img = $att['code']; } } }*/ } } } // 縮略圖 if ($img && !$save[1]['thumb']) { $save[1]['thumb'] = $img; } } } if ($imgs && !$save[1]['thumb']) { $save[1]['thumb'] = $imgs[3][0]; } $save[0]['content'] = $value; $save[1]['url'] = ''; $save[1]['status'] = 9; //9表示正常發(fā)布,1表示審核里面 $save[1]['hits'] = 0; $save[1]['displayorder'] = 0; $save[1]['link_id'] = 0; $save[1]['comments'] = 0; $save[1]['avgsort'] = 0; $save[1]['inputtime'] = $save[1]['inputtime'] = strtotime(trim($data['inputtime'])); $save[1]['updatetime'] = $save[1]['inputtime'] = strtotime(trim($data['inputtime'])); // 更新時間 $save[1]['inputip'] = '127.0.0.1'; // 驗證標題重復 if ($this->content_model->table(SITE_ID.'_'.MOD_DIR)->where('title', $save[1]['title'])->counts()) { echo '重復';exit; } $rt = $this->content_model->save(0, $save); if ($rt['code']) { exit('成功'); } else { exit('失敗'); } } exit;
忘了從哪來的 采集入口 里面有下載遠程圖片的方法 自己提吧
回復@K大帥 你的這個不行哦,只能獲取到欄目文章,發(fā)布成功未知
回復@猴子哥哥
$this->_module_init('news'); // news 是模塊目錄
修改成你的模塊
回復@小黃人 18html 這個改了的,不行
發(fā)布成功未知
查看系統(tǒng)-日志-錯誤日志,看看是什么錯誤導致的入庫失??!
//入庫
$rt = $this->content_model->save_content(0, $save);
下面是錯的,需要改成上面這句
忘了從哪來的 采集入口 里面有下載遠程圖片的方法 自己提吧
回復@K大帥 你的這個不行哦,只能獲取到欄目文章,發(fā)布成功未知
回復@猴子哥哥
修改成你的模塊
回復@小黃人 18html 這個改了的,不行
回復@猴子哥哥
發(fā)布成功未知
查看系統(tǒng)-日志-錯誤日志,看看是什么錯誤導致的入庫失??!
//入庫
$rt = $this->content_model->save_content(0, $save);
下面是錯的,需要改成上面這句