Home  >  Article  >  php教程  >  PHP中source #N问题的解决方法

PHP中source #N问题的解决方法

WBOY
WBOYOriginal
2016-06-06 20:25:161132browse

最近写PHP里面的查询经常会遇到source #4或者source#5这样的问题,下面有个不错的解决方法,大家可以尝试下

最近写PHP里面的查询经常会遇到source #4或者source#5这样的问题,也就是通过mysql_query($sql1)进行一段查询的操作,返回的结果不是想要的字段而是source,去网上查了一些资料都说是什么‘资源'的问题,虽然对于出现这种情况的原理还是不甚了解,,但是解决方案是有了,下面是解决这个问题的代码:

复制代码 代码如下:


$result2 = mysql_query("SELECT imagePath FROM anypaiInfo WHERE schoolId = 1 AND id = $random ");
$row = mysql_fetch_object($result2);
$imageUrl = $row->imagePath;


如上述代码所示,第一段的查询过后,用mysql_fetch_object的函数从结果中获取一行作为对象,然后在这一行里面把想要的字段获取出来。疑问不过出现这个问题的原因还在纠结中。
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