目前,此服务调用仅插入单 (1) 条记录。但是我需要能够向这个方法发送一个真正的对象,在这个调用期间要插入多条记录:
public function savePresentation($assets) {
$stmt = mysqli_prepare($this->connection, "INSERT INTO $this->tablename (presentationid, assetid, positionid) VALUES (?, ?, ?)");
$this->throwExceptionOnError();
mysqli_stmt_bind_param($stmt, 'iii', $assets->presentationid, $assets->assetid, $assets->positionid);
$this->throwExceptionOnError();
mysqli_stmt_execute($stmt);
$this->throwExceptionOnError();
$autoid = mysqli_stmt_insert_id($stmt);
mysqli_stmt_free_result($stmt);
mysqli_close($this->connection);
return $autoid;
}
我将如何更改它以便我可以传递关联数组或类似的东西?
我尝试将语句包装在语句中foreach
,但它似乎不起作用。:/
注意:我正在从 Flash 发送数据,如果这很重要的话。