ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 已解決 火車頭內容采集范例,如何把文章隨機發布到一個欄目 3 0

火車頭內容采集范例,如何增加一個隨機欄目,就是發布是時候隨機發布到一個欄目。

http://www.zbshanke.com/doc/1084.html

按照里面的代碼修改一下。

if ($_GET['action'] == 'category') {
    $this->module['category'] = \Phpcmf\Service::L('category', 'module')->get_category($this->module['share'] ? 'share' : $this->module['dirname']);
    if (!$this->module['category']) {
        echo '模塊【'.$this->module['dirname'].'】沒有創建欄目';
    }
    foreach ($this->module['category'] as $t) {
        if ($t['child'] == 0 && $t['tid'] == 1) {
            echo '<h1>'.$t['name'].'<=>'.$t['id'].'</h1>'.PHP_EOL;
        }
    }

解決方案