Blob::get PHP 메소드

get() 공개 메소드

public get ( $name )
    public function get($name)
    {
        $stmt = $this->db->prepare('SELECT * FROM notification WHERE id = :id');
        $stmt->bindValue(':id', $name);
        $stmt->execute();
        return $stmt->fetch(PDO::FETCH_ASSOC);
    }