您的位置 >>> 星想互联 >>> 编程技术 >>> PHP高级编程
原生类实现二级导航
点击数:1693  发布时间2019-02-07 21:11:31
<?php
    class mypdo{
        public $link;
        public $host;
        public $dbname;
        public $user;
        public $pwd;
        public $char;
    
        public function __construct($host,$dbname,$user,$pwd){
            $this->host=$host;
            $this->dbname=$dbname;
            $this->user=$user;
            $this->pwd=$pwd;
            $this->char='set names utf8';
            $this->link=new pdo("mysql:host={$this->host};dbname={$this->dbname}",$this->user,$this->pwd);
            $this->link->query($this->char);
        }

        public function query($sql){
            return $this->link->query($sql);
        }

        public function getAll($sql){
            return $this->query($sql)->fetchAll(PDO::FETCH_ASSOC);
        }

        public function getnum($sql){
            return $this->query($sql)->rowCount();
        }
    }

    $pdo=new mypdo("localhost","news","root","");
    $sql='sele * from newstype';

    $rs=$pdo->getAll($sql);

    $data=[];
    
    foreach($rs as $v){
        $sql='sele * from news where typeid='.$v['typeid'];
        $rk=$pdo->getAll($sql);
        $data[]= [
            'info'=>$v,
            'con' =>$rk
        ];
    }

    foreach($data as $v){
        echo $v['info']['typename'].'<br>';
        foreach($v['con'] as $s){
            echo $s['title'].'<br>';
        }
        echo "<hr>";
    }    
?>
来源:咸宁网站建设