dongzhang1864 2013-12-06 19:48
浏览 32

如何访问私有财产/方法? [关闭]

I'm new to OOP programming and i'm trying to set up a private class db, for database connection:

My class:

class db
{
private $_db;

private function db()   
{
$this->db = new mysqli('localhost','x','x','x');
$this->db->set_charset('utf');
}
}

In another file I have the following code:

$db = new db();
                $sql = "SELECT news, DATE_FORMAT(date, '%D %b') AS date FROM news ORDER       
BY DATE_FORMAT(date, '%Y, %m, %d') DESC LIMIT 3";
                $r = $db->db->query($sql);
                while($row=$r->fetch_assoc())
                {
                    echo '<b>'. $row['date'] . '</b></br> ' . $row['news'] .'</br>   
</br>';
                }

It works grand for public but not for private.

I was reading that private methods can only be accessed within the class but can't really understand how to do it. Can anyone please give me a hint?

Regards Jack

  • 写回答

3条回答 默认 最新

  • dragon8837 2013-12-06 19:52
    关注

    I'm not sure why your method is private. Essentially, any methods you want to use external to the class should be public. This leads to the creation of getters and setters.

    Getters return private variable fields and setters set those fields to new values. This is just a safe way to enforce types and cleanly accept class modification.

    评论

报告相同问题?

悬赏问题

  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 MATLAB中streamslice问题
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序