當前位置: 首頁>>代碼示例>>PHP>>正文


PHP collection::get_content方法代碼示例

本文整理匯總了PHP中collection::get_content方法的典型用法代碼示例。如果您正苦於以下問題:PHP collection::get_content方法的具體用法?PHP collection::get_content怎麽用?PHP collection::get_content使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在collection的用法示例。


在下文中一共展示了collection::get_content方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: public_test_content

 /**
  * 測試文章內容采集
  */
 public function public_test_content()
 {
     $url = isset($_GET['url']) ? urldecode($_GET['url']) : exit('0');
     $nodeid = isset($_GET['nodeid']) ? intval($_GET['nodeid']) : showmessage(L('illegal_parameters'), HTTP_REFERER);
     if ($data = $this->db->getby_nodeid($nodeid)) {
         Loader::lib('collection:collection', false);
         print_r(collection::get_content($url, $data));
     } else {
         showmessage(L('notfound'));
     }
 }
開發者ID:hubs,項目名稱:yuncms,代碼行數:14,代碼來源:NodeController.php

示例2: col_content

 public function col_content()
 {
     $nodeid = isset($_GET['nodeid']) ? intval($_GET['nodeid']) : showmessage(L('illegal_parameters'), HTTP_REFERER);
     if ($data = $this->db->get_one(array('nodeid' => $nodeid))) {
         $content_db = pc_base::load_model('collection_content_model');
         //更新附件狀態
         $attach_status = false;
         if (pc_base::load_config('system', 'attachment_stat')) {
             $this->attachment_db = pc_base::load_model('attachment_model');
             $attach_status = true;
         }
         pc_base::load_app_class('collection', '', 0);
         $page = isset($_GET['page']) ? intval($_GET['page']) : 1;
         $total = isset($_GET['total']) ? intval($_GET['total']) : 0;
         if (empty($total)) {
             $total = $content_db->count(array('nodeid' => $nodeid, 'siteid' => $this->get_siteid(), 'status' => 0));
         }
         $total_page = ceil($total / 2);
         $list = $content_db->select(array('nodeid' => $nodeid, 'siteid' => $this->get_siteid(), 'status' => 0), 'id,url', '2', 'id desc');
         $i = 0;
         if (!empty($list) && is_array($list)) {
             foreach ($list as $v) {
                 $GLOBALS['downloadfiles'] = array();
                 $html = collection::get_content($v['url'], $data);
                 //更新附件狀態
                 if ($attach_status) {
                     $this->attachment_db->api_update($GLOBALS['downloadfiles'], 'cj-' . $v['id'], 1);
                 }
                 $content_db->update(array('status' => 1, 'data' => array2string($html)), array('id' => $v['id']));
                 $i++;
             }
         } else {
             showmessage(L('url_collect_msg'), '?m=collection&c=node&a=manage');
         }
         if ($total_page > $page) {
             showmessage(L('collectioning') . ($i + ($page - 1) * 2) . '/' . $total . '<script type="text/javascript">location.href="?m=collection&c=node&a=col_content&page=' . ($page + 1) . '&nodeid=' . $nodeid . '&total=' . $total . '&pc_hash=' . $_SESSION['pc_hash'] . '"</script>', '?m=collection&c=node&a=col_content&page=' . ($page + 1) . '&nodeid=' . $nodeid . '&total=' . $total);
         } else {
             $this->db->update(array('lastdate' => SYS_TIME), array('nodeid' => $nodeid));
             showmessage(L('collection_success'), '?m=collection&c=node&a=manage');
         }
     }
 }
開發者ID:shenhua4286,項目名稱:gxw,代碼行數:42,代碼來源:node.php


注:本文中的collection::get_content方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。