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.
我有一个论坛脚本,它为每个新主题创建一个“容器”,并将每个链接到该主题的帖子分配给它。
因此,当我打开一个新主题时,我的脚本会forum_topics在forum_posts.
forum_topics
forum_posts
在forum_posts其中放入主题容器的parent列。id
parent
id
要知道谁是我正在创建的帖子的容器,我使用:
$mysqli->insert_id
我想知道它是否安全,我认为对于同时打开一个新主题的两个用户......这是一个合理的问题?
是的,它是安全的。 每个 PHP 进程使用单独的连接,并且该变量包含来自该连接的插入 id