Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面是执行我的查询并返回资源的语句。
$Result = mysql_query($Query);
我想获得$Result.
$Result
我怎样才能得到它的克隆?
您在 $Result 中获得的并不是真正的可克隆资源,而是对指向结果集中某个位置的光标的引用(这意味着如果您复制它并在一个副本中前进,它也会在另一个副本中前进)。假设您想在不重复查询的情况下两次读取相同的查询结果,这篇文章可能会有所帮助: 如何将 mysql 指针重置回 PHP 中的第一行?