2010-05-26 79 views

回答

0

據我所知,你不能在PHP中這樣做。但是,如果您擔心自己的查詢消耗的內存過多,則可以使用mysql_free_result();

$result = ... first query 

mysql_free_result($result); // Frees memory 

$next_result = ... next query 
相關問題