我在object1.php中得到了最后一个带有pdo的insertid:
object1.php
class 1234{
public function test{
$query = "INSERT INTO " . $this->table_name . "
SET uid=:uid, order_id=:order_id, position=:position, optionindex=:optionindex, created=:created";
if($stmt->execute()){
$last_id = $this->conn->lastInsertId();
}
print_r($last_id); //works here fine
return true;
}
}
}
接下来我需要在object2.php中传递$ last_id。
它对我有用的唯一方法,使用会话......但是没有更好的解决方案吗?
由于