Home >Backend Development >PHP Tutorial > :Resource id #3有关问题~

:Resource id #3有关问题~

WBOY
WBOYOriginal
2016-06-13 13:09:241405browse

求救:Resource id #3问题~~
在1.php中注册了一个session变量:$_SESSION['id']=$result[id],其中$result是mysql_fetch_query的返回值,id是数据库中的某一属性名。但将这个session变量传进2.php中输出时变成“Resource id #3”,请问这是怎么回事啊?

备注:
我在2.php中的写的输出语句是:“$id=$_SESSION['id'];echo $id;”而且1.php和2.php中开头都有session_start()函数。

------解决方案--------------------
你这个$result[id],得到的值可能不对。
我猜得到的可能是一个数据库连接对象,而不是具体的值。
------解决方案--------------------
当然得不到值啦,$result是一个二维数组,不能直接用$result[id]。你把$result打印一下就知道了。

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