我的代码段如下所示。前两行将一些数据插入表中,第三行中包含的文件将对该数据起作用。插入内容可能需要几秒钟。 PHP在进入包含其他PHP文件的第三行代码之前,会等待MySQL查询的结果吗?我需要在这两个数据库操作之间添加Collection
吗?
/**
* Returns an iterator over the elements in this collection. There are no
* guarantees concerning the order in which the elements are returned
* (unless this collection is an instance of some class that provides a
* guarantee).
*
* @return an <tt>Iterator</tt> over the elements in this collection
*/
答案 0 :(得分:1)
代码是逐行执行的,因此它将首先读取$ sql,然后再包含文件。