Home  >  Article  >  Backend Development  >  请教怎么将mysql_fetch_object得到的对象塞到数组里面

请教怎么将mysql_fetch_object得到的对象塞到数组里面

WBOY
WBOYOriginal
2016-06-13 13:31:24988browse

请问如何将mysql_fetch_object得到的对象塞到数组里面?

$jvp_list = array ();
while($rs= mysql_fetch_object($result)){
$jvp_list[] = $rs;
}

这样好象不行噢,请帮忙。


------解决方案--------------------
你的jvp_list也没声明为global啊?
------解决方案--------------------

探讨

引用:

把 $jvp_list 改为 $this->jvp_list


谢谢,非常好,不过为什么一定要加上this?
c++那样在类成员函数里面访问数据成员可加可不加的。

------解决方案--------------------
探讨
谢谢,非常好,不过为什么一定要加上this?
c++那样在类成员函数里面访问数据成员可加可不加的。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn