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.
好的,所以我正在创建一种约会服务,并且我有一个需要一个字段来匹配多个其他字段的数据库。它们需要被存储,以便它们可以被忽略并设置为可能供以后查看。我知道设置逗号分隔字段通常是不明智的,但我想不出更好的方法来跟踪匹配项,同时能够稍后将它们分类到单独的列中。
如果没有逗号分隔字段,有没有人有更好的方法来做到这一点?
数组怎么样?您可以将一组信息存储在数据库中。在 php 中只需这样声明:variable = array(); 那么您可以使用 for 循环、变量 [index#] 等将变量作为数组处理。希望这会有所帮助!