dourang20110122 2015-03-08 08:04
浏览 47

从类中的函数获取具有特定内容的变量

I have this class

class user{
    public function getmsg(){
    $sql3 = "SELECT * FROM news WHERE usertype = 'admin'";
    $result = mysqli_query($this->db,$sql3);
        while($user_data = mysqli_fetch_array($result)){
            $whoposted = $user_data['whoposted'];
            $dateposted = $user_data['dateposted'];
            $title = $user_data['title'];
            $content = $user_data['content'];
            $whoposted = $user_data['usertype'];
        }
    }

}

assume that the object "db" has been declared. and my way of getting into the getmsg function is

$user = new user();
$user->getmsg();

now I want to get the content of $dateposted, how can i do that?

any help would be greatly appreciated. thank you.

  • 写回答

3条回答 默认 最新

  • dongxiequ3724 2015-03-08 08:14
    关注

    try this procedure

    <?php
    class user{
        public function getmsg($key){
            $result=array();
    
        $sql3 = "SELECT * FROM news WHERE usertype = 'admin'";
        $result = mysqli_query($this->db,$sql3);
         $user_data = mysqli_fetch_array($result);
    
    
            return  $user_data[$key];
        }
    
    }
    
    $user=new user();
    
    echo $user->getmsg('dateposted');
    
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据